HomeSort by relevance Sort by last modified time
    Searched refs:GURL (Results 76 - 100 of 146) sorted by null

1 2 34 5 6

  /external/chromium/net/base/
transport_security_state.h 16 class GURL;
filter.h 41 class GURL;
73 // Return false if gurl is not present.
74 virtual bool GetURL(GURL* gurl) const = 0;
net_util_unittest.cc 12 #include "googleurl/src/gurl.h"
476 GURL file_url(net::FilePathToFileURL(
510 // We get these wrong because GURL turns back slashes into forward
520 net::FileURLToFilePath(GURL(url_cases[i].url), &output);
531 GURL(std::string(invalid_utf8)), &output));
536 EXPECT_FALSE(net::FileURLToFilePath(GURL("filefoobar"), &output));
578 GURL url(tests[i].input_url);
590 GURL url(WideToUTF16(L"http://foo:\x4f60\x597d@blah.com"));
    [all...]
registry_controlled_domain_unittest.cc 5 #include "googleurl/src/gurl.h"
54 return TestRegistryControlledDomainService::GetDomainAndRegistry(GURL(url));
63 return TestRegistryControlledDomainService::GetRegistryLength(GURL(url),
74 GURL g1 = GURL(url1);
75 GURL g2 = GURL(url2);
83 // Test GURL version of GetDomainAndRegistry().
113 // underpinnings as the GURL version, so this is really more of a check of
143 // Test GURL version of GetRegistryLength()
    [all...]
registry_controlled_domain.cc 45 #include "googleurl/src/gurl.h"
63 const GURL& gurl) {
65 gurl.parsed_for_possibly_invalid_spec().host;
66 if ((host.len <= 0) || gurl.HostIsIPAddress())
69 gurl.possibly_invalid_spec().data() + host.begin, host.len));
93 bool RegistryControlledDomainService::SameDomainOrHost(const GURL& gurl1,
94 const GURL& gurl2) {
116 const GURL& gurl,
    [all...]
  /external/chromium/net/http/
http_network_transaction.h 224 const GURL& auth_origin);
229 const GURL& auth_origin);
236 const GURL& auth_origin);
248 GURL AuthOrigin(HttpAuth::Target target) const;
http_auth_cache_unittest.cc 46 GURL origin("http://www.google.com");
71 entry = cache.LookupByRealm(GURL("https://www.google.com"), "Realm3");
75 entry = cache.LookupByRealm(GURL("http://www.google.com:80"), "Realm3");
153 GURL origin("http://www.foobar.com:70");
175 GURL origin("http://foobar2.com");
196 GURL("http://foobar2.com:100"), "Realm1", L"alice", L"123"));
258 GURL origin_;
http_auth.h 78 const GURL& origin,
96 const GURL& origin,
  /external/chromium/net/proxy/
proxy_info.h 15 class GURL;
single_threaded_proxy_resolver.cc 36 const GURL& pac_url,
95 GURL pac_url_;
110 const GURL& url,
199 GURL url_;
230 int SingleThreadedProxyResolver::GetProxyForURL(const GURL& url,
290 const GURL& pac_url,
proxy_service.cc 13 #include "googleurl/src/gurl.h"
57 virtual int GetProxyForURL(const GURL& url,
70 virtual int SetPacScript(const GURL& /*pac_url*/,
83 const GURL& url,
192 GURL url_;
265 int ProxyService::ResolveProxy(const GURL& raw_url,
276 GURL url = SimplifyUrlForRequest(raw_url);
311 int ProxyService::TryToCompleteSynchronously(const GURL& url,
332 void ProxyService::ApplyProxyRules(const GURL& url,
432 int ProxyService::ReconsiderProxyAfterError(const GURL& url
    [all...]
proxy_config_unittest.cc 42 config2.pac_url = GURL("http://wpad/wpad.dat");
47 config1.pac_url = GURL("http://wpad/wpad.dat");
315 config.pac_url = GURL("http://custom/pac.js");
415 config.pac_url = GURL("http://custom/pac.js");
420 config.pac_url = GURL("notvalid");
proxy_resolver_perftest.cc 98 GURL pac_url =
112 GURL("http://www.warmup.com"), &proxy_info, NULL, NULL, NULL);
126 int result = resolver_->GetProxyForURL(GURL(query.query_url),
proxy_config.h 12 #include "googleurl/src/gurl.h"
37 GURL pac_url;
proxy_config_service_win.cc 65 config->pac_url = GURL(ie_config.lpszAutoConfigUrl);
  /external/chromium/net/url_request/
url_request_file_dir_job.h 28 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
url_request_file_job.h 29 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
url_request_job_manager.h 38 const GURL& location) const;
url_request.cc 37 URLRequest::URLRequest(const GURL& url, Delegate* delegate)
211 bool URLRequest::IsHandledURL(const GURL& url) {
221 const GURL& first_party_for_cookies) {
235 GURL URLRequest::GetSanitizedReferrer() const {
236 GURL ret(referrer());
240 GURL::Replacements referrer_mods;
350 void URLRequest::ReceivedRedirect(const GURL& location, bool* defer_redirect) {
435 int URLRequest::Redirect(const GURL& location, int http_status_code) {
467 if (GURL(referrer_).SchemeIsSecure() && !location.SchemeIsSecure())
url_request_http_job.h 49 virtual bool IsSafeRedirect(const GURL& location);
109 GURL sdch_dictionary_url_;
url_request_job_tracker.cc 47 const GURL& location,
  /external/chromium/net/websockets/
websocket_throttle_unittest.cc 8 #include "googleurl/src/gurl.h"
84 new SocketStream(GURL("ws://host1/"), &delegate);
94 new SocketStream(GURL("ws://host2/"), &delegate);
104 new SocketStream(GURL("ws://host3/"), &delegate);
115 new SocketStream(GURL("ws://host4/"), &delegate);
websocket.h 18 #include "googleurl/src/gurl.h"
64 Request(const GURL& url, const std::string protocol,
76 const GURL& url() const { return url_; }
102 GURL url_;
  /external/chromium/net/socket_stream/
socket_stream.h 93 SocketStream(const GURL& url, Delegate* delegate);
102 const GURL& url() const { return url_; }
243 GURL ProxyAuthOrigin() const;
259 GURL url_;
273 GURL proxy_url_;
socket_stream_metrics.cc 11 #include "googleurl/src/gurl.h"
15 SocketStreamMetrics::SocketStreamMetrics(const GURL& url)

Completed in 264 milliseconds

1 2 34 5 6