Searched refs:gurl (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium/net/http/
H A Durl_security_manager_unittest.cc8 #include "googleurl/src/gurl.h"
56 GURL gurl(kTestDataList[i].url);
58 url_security_manager->CanUseDefaultCredentials(gurl);
61 << " Run: " << i << " URL: '" << gurl << "'"; local
75 GURL gurl(kTestDataList[i].url);
76 bool can_delegate = url_security_manager->CanDelegate(gurl);
78 << " Run: " << i << " URL: '" << gurl << "'"; local
89 GURL gurl(kTestDataList[i].url);
90 bool can_delegate = url_security_manager->CanDelegate(gurl);
H A Dhttp_auth_handler_factory_unittest.cc43 GURL gurl("www.google.com");
61 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
67 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
70 "Digest", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(),
77 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
80 "Digest", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(),
86 "basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
92 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
95 "Digest", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(),
/external/chromium/net/base/
H A Dmock_filter_context.cc24 // Return false if gurl is not present.
25 bool MockFilterContext::GetURL(GURL* gurl) const {
26 *gurl = gurl_;
H A Dmock_filter_context.h11 #include "googleurl/src/gurl.h"
22 void SetURL(const GURL& gurl) { gurl_ = gurl; } argument
34 // Return false if gurl is not present.
35 virtual bool GetURL(GURL* gurl) const;
H A Dcookie_monster_perftest.cc12 #include "googleurl/src/gurl.h"
143 GURL gurl("https://" + *it + "/");
146 EXPECT_TRUE(cm->SetCookie(gurl, cookie));
185 GURL gurl("https://" + *it + "/");
188 EXPECT_TRUE(cm->SetCookie(gurl, cookie));
212 std::string gurl("www" + domain_name);
216 AddCookieToList(gurl, cookie_line,
227 GURL gurl("www.google.com");
230 cm->GetCookiesWithOptions(gurl, options);
293 GURL gurl("htt
[all...]
H A Dregistry_controlled_domain.cc45 #include "googleurl/src/gurl.h"
65 const GURL& gurl) {
67 gurl.parsed_for_possibly_invalid_spec().host;
68 if ((host.len <= 0) || gurl.HostIsIPAddress())
71 gurl.possibly_invalid_spec().data() + host.begin, host.len));
118 const GURL& gurl,
121 gurl.parsed_for_possibly_invalid_spec().host;
124 if (gurl.HostIsIPAddress())
127 std::string(gurl.possibly_invalid_spec().data() + host.begin, host.len),
64 GetDomainAndRegistry( const GURL& gurl) argument
117 GetRegistryLength( const GURL& gurl, bool allow_unknown_registries) argument
H A Dregistry_controlled_domain.h153 static std::string GetDomainAndRegistry(const GURL& gurl);
191 static size_t GetRegistryLength(const GURL& gurl,
H A Dfilter.h74 // Return false if gurl is not present.
75 virtual bool GetURL(GURL* gurl) const = 0;
H A Dsdch_manager.cc32 const GURL& gurl,
39 url_(gurl),
198 bool SdchManager::Dictionary::DomainMatch(const GURL& gurl, argument
201 return gurl.DomainIs(restriction.data(), restriction.size());
29 Dictionary(const std::string& dictionary_text, size_t offset, const std::string& client_hash, const GURL& gurl, const std::string& domain, const std::string& path, const base::Time& expiration, const std::set<int>& ports) argument
H A Dsdch_filter_unittest.cc1183 GURL gurl("http://mytest.DoMain.com");
1184 std::string domain(gurl.host());
1189 EXPECT_TRUE(SdchManager::Global()->IsInSupportedDomain(gurl));
1193 GURL gurl("http://mytest.DoMain.com");
1194 std::string domain(gurl.host());
1197 SdchManager::Global()->BlacklistDomain(gurl);
1202 EXPECT_FALSE(SdchManager::Global()->IsInSupportedDomain(gurl));
1204 EXPECT_TRUE(SdchManager::Global()->IsInSupportedDomain(gurl));
1208 GURL gurl("http://mytest.DoMain.com");
1209 std::string domain(gurl
[all...]
/external/chromium/chrome/browser/extensions/
H A Dautoupdate_interceptor.cc77 GURL gurl(url);
78 EXPECT_EQ("http", gurl.scheme());
79 EXPECT_EQ("localhost", gurl.host());
81 responses_[gurl] = path;
/external/webkit/Source/WebKit/android/jni/
H A DCookieManager.cpp53 GURL gurl(jstringToStdString(env, url));
56 std::string cookies = WebCookieJar::get(privateBrowsing)->cookieStore()->GetCookieMonster()->GetCookiesWithOptions(gurl, options);
114 GURL gurl(jstringToStdString(env, url));
118 WebCookieJar::get(privateBrowsing)->cookieStore()->GetCookieMonster()->SetCookieWithOptions(gurl, line, options);
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc39 #include "googleurl/src/gurl.h"
144 GURL gurl(url);
145 const std::string& spec = gurl.possibly_invalid_spec();
146 url_parse::Component host = gurl.parsed_for_possibly_invalid_spec().host;
151 if (!gurl.is_valid()) {
/external/chromium/chrome/browser/net/
H A Dpredictor_api.cc544 GURL gurl = tab_start_pref.urls[i]; local
545 if (!gurl.is_valid() || gurl.SchemeIsFile() || gurl.host().empty())
547 if (gurl.SchemeIs("http") || gurl.SchemeIs("https"))
548 urls.push_back(gurl.GetWithEmptyPath());
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page_test.cc39 virtual bool CheckBrowseUrl(const GURL& gurl, Client* client) { argument
40 if (badurls[gurl.spec()] == SAFE)
46 gurl, client));
50 void OnCheckBrowseURLDone(const GURL& gurl, Client* client) { argument
52 check.urls.push_back(gurl);
54 check.result = badurls[gurl.spec()];
/external/chromium/chrome/browser/sync/engine/net/
H A Dserver_connection_manager.cc23 #include "googleurl/src/gurl.h"
328 GURL gurl(server_url);
329 DCHECK(gurl.is_valid()) << gurl;
330 return gurl.host();
/external/chromium/chrome/browser/ui/webui/
H A Dnew_tab_ui.h48 const GURL& gurl);
H A Dnew_tab_ui.cc471 const GURL& gurl) {
472 dictionary->SetString("url", gurl.spec());
478 title_to_set = UTF8ToUTF16(gurl.spec());
469 SetURLTitleAndDirection(DictionaryValue* dictionary, const string16& title, const GURL& gurl) argument
/external/chromium/net/url_request/
H A Durl_request_job_tracker_unittest.cc10 #include "googleurl/src/gurl.h"
159 const GURL gurl(url);
161 ASSERT_TRUE(GetResponseBody(gurl, &body));
175 Fetch(gurl);
/external/chromium/webkit/glue/
H A Dwebclipboard_impl.cc10 #include "googleurl/src/gurl.h"
128 GURL gurl; local
129 ClipboardReadHTML(buffer_type, &html_stdstr, &gurl);
130 *source_url = gurl;
/external/chromium/chrome/browser/history/
H A Dtop_sites_database.cc105 GURL gurl(statement.ColumnString(0));
106 url.url = gurl;
122 (*thumbnails)[gurl] = thumbnail;
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebRequest.cpp94 GURL gurl(m_url);
96 m_request = new net::URLRequest(gurl, this);
493 GURL gurl(m_url);
494 net::OpenSSLPrivateKeyStore::GetInstance()->StorePrivateKey(gurl, privateKey.release());
/external/webkit/Source/WebKit/chromium/public/
H A DWebURL.h40 #include <googleurl/src/gurl.h>
/external/webkit/Source/WebKit/chromium/tests/
H A DWebFrameTest.cpp33 #include <googleurl/src/gurl.h>
/external/chromium/chrome/browser/importer/
H A Dfirefox_importer_utils.cc22 #include "googleurl/src/gurl.h"
218 GURL gurl = GURL(url); local
220 TemplateURLModel::GenerateKeyword(gurl, false));
222 TemplateURLPrepopulateData::GetSearchEngineLogo(gurl));

Completed in 613 milliseconds

12