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

12 3 4 5 6

  /external/chromium/net/proxy/
proxy_script_fetcher.h 17 class GURL;
42 virtual int Fetch(const GURL& url, std::string* utf8_bytes,
proxy_resolver_v8.h 48 virtual int GetProxyForURL(const GURL& url,
65 virtual int SetPacScript(const GURL& /*pac_url*/,
proxy_service.h 20 class GURL;
68 int ResolveProxy(const GURL& url,
86 int ReconsiderProxyAfterError(const GURL& url,
229 int TryToCompleteSynchronously(const GURL& url, ProxyInfo* result);
232 void ApplyProxyRules(const GURL& url,
259 bool ShouldBypassProxyForURL(const GURL& url);
263 static bool IsLocalName(const GURL& url);
321 int ResolveProxy(const GURL& url, ProxyInfo* proxy_info, LoadLog* load_log);
322 int ReconsiderProxyAfterError(const GURL& url,
330 void StartAsyncResolve(const GURL& url, LoadLog* load_log)
    [all...]
proxy_config_service_linux_unittest.cc 367 GURL pac_url;
385 GURL(), // pac_url
404 GURL(), // pac_url
423 GURL("http://wpad/wpad.dat"), // pac_url
442 GURL(), // pac_url
461 GURL(), // pac_url
480 GURL(), // pac_url
499 GURL(), // pac_url
519 GURL(), // pac_url
541 GURL(), // pac_ur
    [all...]
proxy_script_fetcher_unittest.cc 55 GURL GetTestFileUrl(const std::string& relpath) {
61 GURL base_url = FilePathToFileURL(path);
62 return GURL(base_url.spec() + "/" + relpath);
103 GURL url = server->TestServerPage("files/pac.txt");
112 GURL url = server->TestServerPage("files/pac.html");
121 GURL url = server->TestServerPage("files/pac.nsproxy");
140 GURL url = server->TestServerPage("files/500.pac");
149 GURL url = server->TestServerPage("files/404.pac");
169 GURL url = server->TestServerPage("files/downloadable.pac");
187 GURL url = server->TestServerPage("files/cacheable_1hr.pac")
    [all...]
init_proxy_resolver.h 11 #include "googleurl/src/gurl.h"
60 typedef std::vector<GURL> UrlList;
86 const GURL& current_pac_url() const;
mock_proxy_resolver.h 12 #include "googleurl/src/gurl.h"
25 const GURL& url,
35 const GURL& url() const { return url_; }
54 const GURL url_;
63 const GURL& pac_url,
73 const GURL& pac_url() const { return pac_url_; }
87 const GURL pac_url_;
96 virtual int GetProxyForURL(const GURL& url,
117 virtual int SetPacScript(const GURL& pac_url,
single_threaded_proxy_resolver.h 34 virtual int GetProxyForURL(const GURL& url,
60 virtual int SetPacScript(const GURL& pac_url,
single_threaded_proxy_resolver_unittest.cc 6 #include "googleurl/src/gurl.h"
30 virtual int GetProxyForURL(const GURL& query_url,
56 virtual int SetPacScript(const GURL& pac_url,
119 virtual int GetProxyForURL(const GURL& query_url,
161 GURL("http://request0"), &results0, &callback0, NULL, log0);
178 GURL("http://request1"), &results1, &callback1, NULL, NULL);
184 GURL("http://request2"), &results2, &callback2, NULL, NULL);
190 GURL("http://request3"), &results3, &callback3, NULL, NULL);
238 GURL("http://request0"), &results0, &callback0, &request0, NULL);
249 GURL("http://request1"), &results1, &callback1, NULL, NULL)
    [all...]
proxy_service_unittest.cc 12 #include "googleurl/src/gurl.h"
34 config.pac_url = GURL(pac_url);
56 virtual int Fetch(const GURL& url,
78 const GURL& pending_request_url() const {
87 GURL pending_request_url_;
97 GURL url("http://www.google.com/");
124 GURL url("http://www.google.com/");
132 EXPECT_EQ(GURL("http://foopy/proxy.pac"),
169 GURL url("http://username:password@www.google.com/?ref#hash#hash");
176 EXPECT_EQ(GURL("http://foopy/proxy.pac")
    [all...]
  /external/chromium/net/http/
http_auth_cache.h 12 #include "googleurl/src/gurl.h"
38 Entry* LookupByRealm(const GURL& origin, const std::string& realm);
47 Entry* LookupByPath(const GURL& origin, const std::string& path);
59 Entry* Add(const GURL& origin,
72 bool Remove(const GURL& origin,
92 const GURL& origin() const {
131 GURL origin_;
http_auth_handler.cc 13 const GURL& origin) {
http_transaction_unittest.cc 112 mock_transactions[GURL(trans->url).spec()] = trans;
116 mock_transactions.erase(GURL(trans->url).spec());
119 const MockTransaction* FindMockTransaction(const GURL& url) {
127 if (url == GURL(kBuiltinMockTransactions[i]->url))
  /external/chromium/net/url_request/
request_tracker_unittest.cc 18 explicit TestRequest(const GURL& url)
25 const GURL& original_url() const { return url_; }
38 const GURL url_;
53 TestRequest req1(GURL("http://req1"));
54 TestRequest req2(GURL("http://req2"));
55 TestRequest req3(GURL("http://req3"));
56 TestRequest req4(GURL("http://req4"));
57 TestRequest req5(GURL("http://req5"));
68 EXPECT_EQ(GURL("http://req1"), live_reqs[0]->original_url());
69 EXPECT_EQ(GURL("http://req2"), live_reqs[1]->original_url())
    [all...]
url_request_test_job.h 56 static GURL test_url_1();
57 static GURL test_url_2();
58 static GURL test_url_3();
59 static GURL test_url_error();
96 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
url_request_filter.h 12 // GURL("http://foo.com/"),
28 class GURL;
52 bool AddUrlHandler(const GURL& url, URLRequest::ProtocolFactory* factory);
54 void RemoveUrlHandler(const GURL& url);
url_request.h 18 #include "googleurl/src/gurl.h"
92 const GURL& location) {
153 const GURL& new_url,
209 URLRequest(const GURL& url, Delegate* delegate);
250 static bool IsHandledURL(const GURL& url);
254 const GURL& original_url() const { return original_url_; }
255 const GURL& url() const { return url_; }
259 const GURL& first_party_for_cookies() const {
264 void set_first_party_for_cookies(const GURL& first_party_for_cookies);
279 GURL GetSanitizedReferrer() const
    [all...]
url_request_data_job.cc 28 const GURL& url = request_->url();
  /external/chromium/net/base/
net_util.h 23 class GURL;
44 GURL FilePathToFileURL(const FilePath& path);
47 // file URL must be well-formed (GURL::is_valid() must return true); we don't
50 bool FileURLToFilePath(const GURL& url, FilePath* file_path);
67 std::string GetHostAndPort(const GURL& url);
71 std::string GetHostAndOptionalPort(const GURL& url);
82 void GetIdentityFromURL(const GURL& url,
136 // The input should be the canonicalized ASCII host name from GURL. This
211 FilePath GetSuggestedFilename(const GURL& url,
236 void AppendFormattedHost(const GURL& url
    [all...]
cookie_monster_unittest.cc 14 #include "googleurl/src/gurl.h"
247 GURL url_google(kUrlGoogle);
257 EXPECT_EQ("C=D", cm->GetCookies(GURL("http://foo.www.google.izzle")));
270 EXPECT_EQ("", cm->GetCookies(GURL("http://a.izzle")));
273 cm->GetCookies(GURL("http://bla.www.google.izzle")));
281 GURL url_google("http://www.google.com");
292 GURL url_abcd("http://a.b.c.d.com");
293 GURL url_bcd("http://b.c.d.com");
294 GURL url_cd("http://c.d.com");
295 GURL url_d("http://d.com")
    [all...]
filter_unittest.h 11 #include "googleurl/src/gurl.h"
27 void SetURL(const GURL& gurl) { gurl_ = gurl; }
42 // Return false if gurl is not present.
43 virtual bool GetURL(GURL* gurl) const {
44 *gurl = gurl_;
75 GURL gurl_;
  /external/chromium/net/socket_stream/
socket_stream_metrics.h 16 class GURL;
22 explicit SocketStreamMetrics(const GURL& url);
socket_stream_metrics_unittest.cc 7 #include "googleurl/src/gurl.h"
36 SocketStreamMetrics unknown(GURL("unknown://www.example.com/"));
37 SocketStreamMetrics ws1(GURL("ws://www.example.com/"));
38 SocketStreamMetrics ws2(GURL("ws://www.example.com/"));
39 SocketStreamMetrics wss1(GURL("wss://www.example.com/"));
40 SocketStreamMetrics wss2(GURL("wss://www.example.com/"));
41 SocketStreamMetrics wss3(GURL("wss://www.example.com/"));
66 SocketStreamMetrics metrics(GURL("ws://www.example.com/"));
121 SocketStreamMetrics metrics(GURL("ws://www.example.com/"));
  /external/webkit/WebKit/chromium/public/
WebURL.h 40 #include <googleurl/src/gurl.h>
114 WebURL(const GURL& g)
121 WebURL& operator=(const GURL& g)
129 operator GURL() const
131 return isNull() ? GURL() : GURL(m_spec.data(), m_spec.length(), m_parsed, m_isValid);
  /external/chromium/net/ftp/
ftp_auth_cache.cc 8 #include "googleurl/src/gurl.h"
15 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
23 void FtpAuthCache::Add(const GURL& origin, const std::wstring& username,
41 void FtpAuthCache::Remove(const GURL& origin, const std::wstring& username,

Completed in 624 milliseconds

12 3 4 5 6