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

1 2 3 4 5 6

  /external/chromium/net/url_request/
url_request_redirect_job.h 10 class GURL;
18 URLRequestRedirectJob(URLRequest* request, GURL redirect_destination);
21 bool IsRedirectResponse(GURL* location, int* http_status_code);
28 GURL redirect_destination_;
url_request_job_metrics.h 16 #include "googleurl/src/gurl.h"
24 scoped_ptr<GURL> original_url_;
28 scoped_ptr<GURL> url_;
url_request_redirect_job.cc 10 GURL redirect_destination)
23 bool URLRequestRedirectJob::IsRedirectResponse(GURL* location,
url_request_view_net_internals_job.h 30 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
47 virtual std::string GetDetails(const GURL& url) = 0;
48 virtual GURL MakeURL(const std::string& details) = 0;
  /external/chromium/net/base/
cookie_policy.h 10 class GURL;
21 virtual int CanGetCookies(const GURL& url,
22 const GURL& first_party_for_cookies,
30 virtual int CanSetCookie(const GURL& url,
31 const GURL& first_party_for_cookies,
data_url.h 10 class GURL;
39 static bool Parse(const GURL& url,
mime_sniffer.h 10 class GURL;
20 bool ShouldSniffMimeType(const GURL& url, const std::string& mime_type);
32 const GURL& url, const std::string& type_hint,
static_cookie_policy.h 11 class GURL;
46 virtual int CanGetCookies(const GURL& url,
47 const GURL& first_party_for_cookies,
52 virtual int CanSetCookie(const GURL& url,
53 const GURL& first_party_for_cookies,
static_cookie_policy.cc 8 #include "googleurl/src/gurl.h"
14 int StaticCookiePolicy::CanGetCookies(const GURL& url,
15 const GURL& first_party_for_cookies,
30 int StaticCookiePolicy::CanSetCookie(const GURL& url,
31 const GURL& first_party_for_cookies,
cookie_store.h 17 class GURL;
28 virtual bool SetCookieWithOptions(const GURL& url,
36 virtual std::string GetCookiesWithOptions(const GURL& url,
40 virtual void DeleteCookie(const GURL& url,
51 bool SetCookie(const GURL& url, const std::string& cookie_line) {
56 std::string GetCookies(const GURL& url) {
61 void SetCookiesWithOptions(const GURL& url,
67 void SetCookies(const GURL& url,
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.
117 class GURL;
133 // information, but no subdomains, from the given GURL. Returns an empty
134 // string if the GURL is invalid, has no host (e.g. a file: URL), has multiple
152 static std::string GetDomainAndRegistry(const GURL& gurl);
154 // Like the GURL version, but takes a host (which is canonicalized internally)
155 // instead of a full GURL
    [all...]
sdch_manager.h 30 #include "googleurl/src/gurl.h"
47 virtual void Schedule(const GURL& dictionary_url) = 0;
174 const std::string& client_hash, const GURL& url,
179 const GURL& url() const { return url_; }
184 bool CanAdvertise(const GURL& target_url);
189 const std::set<int> ports, const GURL& dictionary_url);
193 bool CanUse(const GURL& referring_url);
200 static bool DomainMatch(const GURL& url, const std::string& restriction);
210 // The GURL that arrived with the text_ in a URL request to specify where
212 const GURL url_
    [all...]
static_cookie_policy_unittest.cc 8 #include "googleurl/src/gurl.h"
21 int CanGetCookies(const GURL& url, const GURL& first_party) {
24 int CanSetCookie(const GURL& url, const GURL& first_party) {
29 GURL url_google_;
30 GURL url_google_secure_;
31 GURL url_google_mail_;
32 GURL url_google_analytics_;
40 EXPECT_EQ(net::OK, CanGetCookies(url_google_, GURL()));
    [all...]
  /external/chromium/net/ftp/
ftp_request_info.h 8 #include "googleurl/src/gurl.h"
15 GURL url;
ftp_auth_cache_unittest.cc 8 #include "googleurl/src/gurl.h"
16 GURL origin1("ftp://foo1");
17 GURL origin2("ftp://foo2");
63 GURL origin1("ftp://foo:80");
64 GURL origin2("ftp://foo:21");
73 // GURL is automatically canonicalized. Hence the following variations in
80 cache.Add(GURL("ftp://HoSt:21"), L"username", L"password");
83 FtpAuthCache::Entry* entry1 = cache.Lookup(GURL("ftp://HoSt:21"));
85 EXPECT_EQ(entry1, cache.Lookup(GURL("ftp://host:21")));
86 EXPECT_EQ(entry1, cache.Lookup(GURL("ftp://host")))
    [all...]
ftp_auth_cache.h 11 #include "googleurl/src/gurl.h"
17 // The parameter for doing lookups, insertions, and deletions is a GURL of the
20 // GURL("ftp://myserver") -- OK (implied port of 21)
21 // GURL("ftp://myserver:21") -- OK
22 // GURL("ftp://myserver/PATH") -- WRONG, paths not allowed
29 Entry(const GURL& origin, const std::wstring& username,
36 const GURL origin;
45 Entry* Lookup(const GURL& origin);
50 void Add(const GURL& origin, const std::wstring& username,
55 void Remove(const GURL& origin, const std::wstring& username
    [all...]
  /external/chromium/net/proxy/
proxy_config_service_win_unittest.cc 21 GURL pac_url;
37 GURL(), // pac_url
54 GURL("http://wpad/wpad.dat"), // pac_url
71 GURL(), // pac_url
88 GURL(), // pac_url
105 GURL(), // pac_url
123 GURL(), // pac_url
140 GURL(), // pac_url
158 GURL(), // pac_url
175 GURL(), // pac_ur
    [all...]
proxy_resolver_mac.h 10 #include "googleurl/src/gurl.h"
23 virtual int GetProxyForURL(const GURL& url,
34 virtual int SetPacScript(const GURL& pac_url,
41 GURL pac_url_;
proxy_resolver_winhttp.h 10 #include "googleurl/src/gurl.h"
25 virtual int GetProxyForURL(const GURL& url,
34 virtual int SetPacScript(const GURL& pac_url,
43 GURL pac_url_;
proxy_resolver.h 11 #include "googleurl/src/gurl.h"
40 virtual int GetProxyForURL(const GURL& url,
56 int SetPacScriptByUrl(const GURL& url, CompletionCallback* callback) {
65 return SetPacScript(GURL(), bytes_utf8, callback);
84 virtual int SetPacScript(const GURL& pac_url,
  /external/chromium/googleurl/src/
gurl.cc 38 #include "googleurl/src/gurl.h"
66 static GURL* empty_gurl = NULL;
107 GURL::GURL() : is_valid_(false) {
110 GURL::GURL(const GURL& other)
116 GURL::GURL(const std::string& url_string) {
120 GURL::GURL(const string16& url_string)
    [all...]
gurl.h 41 class GURL {
47 GURL();
51 GURL(const GURL& other);
60 explicit GURL(const std::string& url_string /*, output_param_encoding*/);
61 explicit GURL(const string16& url_string /*, output_param_encoding*/);
66 GURL(const char* canonical_spec, size_t canonical_spec_len,
124 bool operator==(const GURL& other) const {
127 bool operator!=(const GURL& other) const {
131 // Allows GURL to used as a key in STL (for example, a std::set or std::map)
    [all...]
gurl_unittest.cc 4 #include "googleurl/src/gurl.h"
60 GURL gurl(type_cases[i].src);
61 EXPECT_STREQ(type_cases[i].expected, gurl.spec().c_str());
65 // Test the basic creation and querying of components in a GURL. We assume
69 GURL url(WStringToUTF16(L"http://user:pass@google.com:99/foo;bar?q=a#ref"));
89 GURL url;
105 GURL url(WStringToUTF16(L"http://user:pass@google.com:99/foo;bar?q=a#ref"));
107 GURL url2(url);
122 GURL invalid
    [all...]
  /external/chromium/net/http/
http_request_info.h 10 #include "googleurl/src/gurl.h"
22 GURL url;
25 GURL referrer;
http_util_icu.cc 16 std::string HttpUtil::PathForRequest(const GURL& url) {
24 std::string HttpUtil::SpecForRequest(const GURL& url) {

Completed in 340 milliseconds

1 2 3 4 5 6