HomeSort by relevance Sort by last modified time
    Searched refs:gurl (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/browser/autocomplete/
history_provider_util.cc 28 bool HistoryMatch::EqualsGURL(const HistoryMatch& h, const GURL& url) {
33 const GURL& gurl = url_info.url(); local
34 DCHECK(gurl.is_valid());
35 return (!gurl.has_path() || (gurl.path() == "/")) && !gurl.has_query() &&
36 !gurl.has_ref();
  /external/chromium/net/http/
url_security_manager_unittest.cc 8 #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)
    [all...]
http_auth_handler_factory_unittest.cc 26 const GURL& origin,
43 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))
    [all...]
  /external/chromium_org/net/http/
url_security_manager_unittest.cc 11 #include "url/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)
    [all...]
http_auth_handler_factory_unittest.cc 26 const GURL& origin,
43 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))
    [all...]
  /external/chromium/net/base/
mock_filter_context.h 11 #include "googleurl/src/gurl.h"
22 void SetURL(const GURL& gurl) { gurl_ = gurl; }
34 // Return false if gurl is not present.
35 virtual bool GetURL(GURL* gurl) const;
59 GURL gurl_;
mock_filter_context.cc 24 // Return false if gurl is not present.
25 bool MockFilterContext::GetURL(GURL* gurl) const {
26 *gurl = gurl_;
cookie_monster_perftest.cc 12 #include "googleurl/src/gurl.h"
48 static const GURL kUrlGoogle("http://www.google.izzle");
80 std::vector<GURL> gurls; // just wanna have ffffuunnn
82 gurls.push_back(GURL(base::StringPrintf("http://a%04d.izzle", i)));
87 for (std::vector<GURL>::const_iterator it = gurls.begin();
94 for (std::vector<GURL>::const_iterator it = gurls.begin();
143 GURL gurl("https://" + *it + "/");
146 EXPECT_TRUE(cm->SetCookie(gurl, cookie));
150 GURL probe_gurl("https://b.a.b.a.top.com/")
    [all...]
registry_controlled_domain.cc 45 #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));
95 bool RegistryControlledDomainService::SameDomainOrHost(const GURL& gurl1,
96 const GURL& gurl2) {
118 const GURL& gurl,
    [all...]
registry_controlled_domain.h 47 The RegistryControlledDomainService examines the hostname of a GURL passed to
65 * Rules should have been normalized using the same canonicalization that GURL
107 GURL to normalize rules, and validating the rules.
118 class GURL;
134 // information, but no subdomains, from the given GURL. Returns an empty
135 // string if the GURL is invalid, has no host (e.g. a file: URL), has multiple
153 static std::string GetDomainAndRegistry(const GURL& gurl);
155 // Like the GURL version, but takes a host (which is canonicalized internally)
156 // instead of a full GURL
    [all...]
  /external/chromium_org/net/base/
mock_filter_context.cc 24 // Return false if gurl is not present.
25 bool MockFilterContext::GetURL(GURL* gurl) const {
26 *gurl = gurl_;
mock_filter_context.h 11 #include "url/gurl.h"
21 void SetURL(const GURL& gurl) { gurl_ = gurl; }
33 // Return false if gurl is not present.
34 virtual bool GetURL(GURL* gurl) const OVERRIDE;
58 GURL gurl_;
  /external/chromium_org/content/browser/media/
media_browsertest.h 32 void RunTest(const GURL& gurl, const char* expected);
media_browsertest.cc 40 GURL gurl; local
52 gurl = test_server()->GetURL(
56 gurl = GetFileUrlWithQuery(test_file_path, query);
58 RunTest(gurl, expected);
61 void MediaBrowserTest::RunTest(const GURL& gurl, const char* expected) {
63 DVLOG(1) << "Running test URL: " << gurl;
68 NavigateToURL(shell(), gurl); local
196 NavigateToURL(shell(), GURL(kAboutBlankURL))
    [all...]
  /external/chromium_org/net/base/registry_controlled_domains/
registry_controlled_domain.h 50 The RegistryControlledDomainService examines the hostname of a GURL passed to
68 * Rules should have been normalized using the same canonicalization that GURL
110 GURL to normalize rules, and validating the rules.
121 class GURL;
157 // information, but no subdomains, from the given GURL. Returns an empty
158 // string if the GURL is invalid, has no host (e.g. a file: URL), has multiple
176 NET_EXPORT std::string GetDomainAndRegistry(const GURL& gurl,
179 // Like the GURL version, but takes a host (which is canonicalized internally)
180 // instead of a full GURL
    [all...]
registry_controlled_domain.cc 53 #include "url/gurl.h"
195 const GURL& gurl,
198 gurl.parsed_for_possibly_invalid_spec().host;
199 if ((host.len <= 0) || gurl.HostIsIPAddress())
202 gurl.possibly_invalid_spec().data() + host.begin, host.len), filter);
216 const GURL& gurl1,
217 const GURL& gurl2,
239 const GURL& gurl,
    [all...]
  /external/chromium/chrome/browser/extensions/
autoupdate_interceptor.cc 54 GURL url = request->url();
56 GURL::Replacements replacements;
60 std::map<GURL, FilePath>::iterator i = responses_.find(url);
77 GURL gurl(url);
78 EXPECT_EQ("http", gurl.scheme());
79 EXPECT_EQ("localhost", gurl.host());
81 responses_[gurl] = path;
  /external/chromium_org/content/renderer/pepper/
pepper_video_destination_host.cc 52 GURL gurl(stream_url);
53 if (!gurl.is_valid())
59 gurl.spec(),
pepper_websocket_host.cc 181 GURL gurl(url);
182 url_ = gurl.spec();
183 if (!gurl.is_valid())
185 if (!gurl.SchemeIs("ws") && !gurl.SchemeIs("wss"))
187 if (gurl.has_ref())
189 if (!net::IsPortAllowedByDefault(gurl.IntPort()))
191 WebURL web_url(gurl);
  /external/chromium_org/content/renderer/media/
test_response_generator.h 11 #include "url/gurl.h"
28 TestResponseGenerator(const GURL& gurl, int64 content_length);
58 GURL gurl_;
  /external/chromium_org/net/cookies/
cookie_monster_perftest.cc 17 #include "url/gurl.h"
65 CookieMonster* cm, const GURL& gurl, const std::string& cookie) {
66 cm->SetCookieWithOptionsAsync(gurl, cookie, options_, base::Bind(
80 const std::string& GetCookies(CookieMonster* cm, const GURL& gurl) {
81 cm->GetCookiesWithOptionsAsync(gurl, options_, base::Bind(
133 setCookieCallback.SetCookie(cm.get(), GURL(kGoogleURL), *it);
142 getCookiesCallback.GetCookies(cm.get(), GURL(kGoogleURL));
155 std::vector<GURL> gurls; // just wanna have ffffuunn
    [all...]
  /external/chromium_org/content/child/
quota_dispatcher.h 17 class GURL;
61 void QueryStorageUsageAndQuota(const GURL& gurl,
65 const GURL& gurl,
  /external/chromium_org/chrome/browser/policy/
configuration_policy_handler_android.cc 15 #include "url/gurl.h"
34 GURL gurl = URLFixerUpper::FixupURL(url_string, ""); local
35 if (!gurl.is_valid())
37 *url = gurl.spec();
  /external/chromium_org/android_webview/renderer/
aw_content_renderer_client.cc 35 #include "url/gurl.h"
87 const GURL& gurl = request.url(); local
104 if (frame->parent() && (gurl.SchemeIs(chrome::kHttpScheme) ||
105 gurl.SchemeIs(chrome::kHttpsScheme) ||
106 gurl.SchemeIs(chrome::kAboutScheme)))
125 const GURL& base,
127 const GURL& result) {
186 GURL error_url(failed_request.url());
  /external/chromium_org/content/browser/
child_process_security_policy_impl.cc 22 #include "url/gurl.h"
154 bool CanRequestURL(const GURL& url) {
196 bool CanLoadPage(const GURL& gurl) {
203 GURL site_gurl = SiteInstanceImpl::GetSiteForURL(NULL, gurl);
207 bool CanAccessCookiesForOrigin(const GURL& gurl) {
213 GURL site_gurl = SiteInstanceImpl::GetSiteForURL(NULL, gurl);
    [all...]

Completed in 547 milliseconds

1 2 3 4 5 6 7