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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/google_apis/gaia/
gaia_urls.h 11 #include "url/gurl.h"
19 const GURL& gaia_url() const;
20 const GURL& captcha_base_url() const;
21 const GURL& client_login_url() const;
22 const GURL& service_login_url() const;
23 const GURL& service_login_auth_url() const;
24 const GURL& service_logout_url() const;
25 const GURL& issue_auth_token_url() const;
26 const GURL& get_user_info_url() const;
27 const GURL& token_auth_url() const
    [all...]
  /external/chromium_org/chrome/browser/metrics/rappor/
sampling.cc 10 #include "url/gurl.h"
14 std::string GetDomainAndRegistrySampleFromGURL(const GURL& gurl) {
15 if (gurl.SchemeIsHTTPOrHTTPS()) {
17 gurl, net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES);
19 if (gurl.SchemeIsFile())
20 return gurl.scheme() + "://";
21 return gurl.scheme() + "://" + gurl.host();
25 const GURL& gurl)
    [all...]
  /external/chromium_org/chrome/browser/
browser_about_handler_unittest.cc 13 #include "url/gurl.h"
23 GURL test_url;
24 GURL result_url;
27 GURL("http://google.com"),
28 GURL("http://google.com")
31 GURL(url::kAboutBlankURL),
32 GURL(url::kAboutBlankURL)
35 GURL(chrome_prefix + chrome::kChromeUIMemoryHost),
36 GURL(chrome_prefix + chrome::kChromeUIMemoryHost)
39 GURL(chrome_prefix + chrome::kChromeUIDefaultHost)
    [all...]
image_holder_unittest.cc 32 ImageHolder image_holder(GURL(kIconUrl1), GURL(kIconUrl2), NULL, &delegate);
34 EXPECT_EQ(GURL(kIconUrl1), image_holder.fetchers_[0]->url());
35 EXPECT_EQ(GURL(kIconUrl2), image_holder.fetchers_[1]->url());
39 image_holder.CreateBitmapFetcher(GURL(kIconUrl2));
40 EXPECT_EQ(GURL(kIconUrl1), image_holder.fetchers_[0]->url());
41 EXPECT_EQ(GURL(kIconUrl2), image_holder.fetchers_[1]->url());
47 ImageHolder image_holder(GURL(kIconUrl1), GURL(), NULL, &delegate);
54 image_holder.OnFetchComplete(GURL(kIconUrl1), &bitmap)
    [all...]
  /external/chromium_org/chrome/common/
search_urls_unittest.cc 8 #include "url/gurl.h"
15 GURL("http://example.com/path"),
16 GURL("http://example.com/path?param")));
18 GURL("http://not.example.com/path"),
19 GURL("http://example.com/path")));
21 GURL("http://example.com:80/path"),
22 GURL("http://example.com/path")));
24 GURL("http://example.com:8080/path"),
25 GURL("http://example.com/path")));
27 GURL("ftp://example.com/path")
    [all...]
search_urls.h 8 class GURL;
13 bool MatchesOriginAndPath(const GURL& my_url, const GURL& other_url);
  /external/chromium_org/chrome/renderer/
content_settings_observer_unittest.cc 12 #include "url/gurl.h"
25 GURL chrome_ui_url =
26 GURL(std::string(content::kChromeUIScheme).append(end_url));
29 GURL()));
31 GURL chrome_dev_tools_url =
32 GURL(std::string(content::kChromeDevToolsScheme).append(end_url));
35 GURL()));
38 GURL extension_url =
39 GURL(std::string(extensions::kExtensionScheme).append(end_url));
42 GURL()));
    [all...]
  /external/chromium_org/components/translate/core/browser/
translate_url_util.h 8 #include "url/gurl.h"
13 // GURL instance.
14 GURL AddApiKeyToUrl(const GURL& url);
17 // returns GURL instance.
18 GURL AddHostLocaleToUrl(const GURL& url);
  /external/chromium_org/components/cloud_devices/common/
cloud_devices_urls.h 10 #include "url/gurl.h"
19 GURL GetCloudPrintURL();
20 GURL GetCloudPrintRelativeURL(const std::string& relative_path);
21 GURL GetCloudPrintEnableURL(const std::string& proxy_id);
22 GURL GetCloudPrintEnableWithSigninURL(const std::string& proxy_id);
23 GURL GetCloudPrintManageDeviceURL(const std::string& device_id);
24 GURL GetCloudPrintSigninURL();
25 GURL GetCloudPrintAddAccountURL();
27 GURL GetCloudDevicesURL();
28 GURL GetCloudDevicesRelativeURL(const std::string& relative_path)
    [all...]
  /external/chromium_org/content/public/test/
mock_special_storage_policy.h 12 #include "url/gurl.h"
22 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE;
23 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE;
24 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE;
25 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE;
27 virtual bool HasIsolatedStorage(const GURL& origin) OVERRIDE;
30 void AddProtected(const GURL& origin) {
34 void AddUnlimited(const GURL& origin) {
38 void RemoveUnlimited(const GURL& origin) {
42 void AddSessionOnly(const GURL& origin)
    [all...]
  /external/chromium_org/chrome/browser/android/
url_utilities.cc 11 #include "url/gurl.h"
31 GURL url_1(ConvertJavaStringToUTF8(env, url_1_str));
32 GURL url_2(ConvertJavaStringToUTF8(env, url_2_str));
46 GURL gurl = GURL(ConvertJavaStringToUTF8(env, url)); local
47 if (gurl.is_empty())
56 gurl, filter)).Release();
60 GURL gurl = GURL(ConvertJavaStringToUTF8(env, url)) local
67 GURL gurl = GURL(ConvertJavaStringToUTF8(env, url)); local
87 const GURL gurl = GURL(ConvertJavaStringToUTF8(env, url)); local
    [all...]
  /external/chromium_org/content/browser/appcache/
mock_appcache_policy.h 10 #include "url/gurl.h"
19 virtual bool CanLoadAppCache(const GURL& manifest_url,
20 const GURL& first_party) OVERRIDE;
21 virtual bool CanCreateAppCache(const GURL& manifest_url,
22 const GURL& first_party) OVERRIDE;
26 GURL requested_manifest_url_;
  /external/chromium_org/chrome/browser/translate/
translate_service_unittest.cc 9 #include "url/gurl.h"
17 GURL empty_url = GURL(std::string());
21 GURL chrome_url = GURL(chrome);
25 GURL devtools_url = GURL(devtools);
32 GURL filemanager_url = GURL(filemanager);
37 GURL ftp_url = GURL(ftp)
    [all...]
  /external/chromium_org/components/history/core/browser/
history_match.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_org/content/browser/service_worker/
service_worker_utils_unittest.cc 12 GURL("http://www.example.com/"), GURL("http://www.example.com/")));
14 GURL("http://www.example.com/"),
15 GURL("http://www.example.com/page.html")));
18 GURL("http://www.example.com/"), GURL("https://www.example.com/")));
20 GURL("http://www.example.com/"),
21 GURL("https://www.example.com/page.html")));
24 GURL("http://www.example.com/"), GURL("http://www.foo.com/")))
    [all...]
  /external/chromium_org/chrome/renderer/searchbox/
search_bouncer_unittest.cc 12 #include "url/gurl.h"
18 std::vector<GURL> search_urls;
19 search_urls.push_back(GURL("http://example.com/search"));
20 search_urls.push_back(GURL("http://example.com/search2"));
21 bouncer_->OnSetSearchURLs(search_urls, GURL("http://example.com/newtab"));
28 EXPECT_FALSE(bouncer_->ShouldFork(GURL()));
29 EXPECT_FALSE(bouncer_->ShouldFork(GURL("http://notsearch.example.com")));
30 EXPECT_TRUE(bouncer_->ShouldFork(GURL("http://example.com/search?q=foo")));
31 EXPECT_TRUE(bouncer_->ShouldFork(GURL("http://example.com/search2#q=foo")));
32 EXPECT_TRUE(bouncer_->ShouldFork(GURL("http://example.com/newtab")))
    [all...]
searchbox_extension_unittest.cc 8 #include "url/gurl.h"
13 GURL ResolveURL(const GURL& current_url,
17 EXPECT_EQ(GURL("http://www.google.com/"),
18 ResolveURL(GURL(""), base::ASCIIToUTF16("http://www.google.com")));
20 EXPECT_EQ(GURL("http://news.google.com/"),
21 ResolveURL(GURL("http://www.google.com"),
24 EXPECT_EQ(GURL("http://www.google.com/hello?q=world"),
25 ResolveURL(GURL("http://www.google.com/foo?a=b"),
28 EXPECT_EQ(GURL("http://www.google.com:90/foo/hello?q=world")
    [all...]
searchbox_unittest.cc 8 #include "url/gurl.h"
14 const GURL& url,
19 const GURL& url,
29 GURL transient_url;
34 {kValidRenderViewID, GURL("chrome-search://favicon/1/2"), 2, true},
35 {kValidRenderViewID, GURL("chrome-search://thumb/1/2"), 2, true},
38 {kInvalidRenderViewID, GURL("chrome-search://favicon/1/2"), 0, false},
39 {kInvalidRenderViewID, GURL("chrome-search://thumb/1/2"), 0, false},
42 {kValidRenderViewID, GURL("chrome-search://thumb"), 0, false},
43 {kValidRenderViewID, GURL("chrome-search://thumb/"), 0, false}
    [all...]
  /external/chromium_org/mojo/shell/
mojo_url_resolver.h 11 #include "url/gurl.h"
28 void SetBaseURL(const GURL& base_url);
31 void AddCustomMapping(const GURL& mojo_url, const GURL& resolved_url);
35 void AddLocalFileMapping(const GURL& mojo_url);
39 GURL Resolve(const GURL& mojo_url) const;
42 std::map<GURL, GURL> url_map_;
43 std::set<GURL> local_file_set_
    [all...]
  /external/chromium_org/chrome/browser/extensions/
mock_extension_special_storage_policy.h 12 #include "url/gurl.h"
22 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE;
23 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE;
24 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE;
25 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE;
29 void AddProtected(const GURL& origin) {
36 std::set<GURL> protected_;
  /external/chromium_org/components/precache/core/
precache_url_table_unittest.cc 38 precache_url_table_->AddURL(GURL("http://url.com"), kTime);
40 std::map<GURL, base::Time> expected_map;
41 expected_map[GURL("http://url.com")] = kTime;
43 std::map<GURL, base::Time> actual_map;
51 precache_url_table_->AddURL(GURL("http://url.com"), kOldTime);
52 precache_url_table_->AddURL(GURL("http://url.com"), kNewTime);
54 std::map<GURL, base::Time> expected_map;
55 expected_map[GURL("http://url.com")] = kNewTime;
57 std::map<GURL, base::Time> actual_map;
66 precache_url_table_->AddURL(GURL("http://stays.com"), kStaysTime)
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.h 21 #include "url/gurl.h"
23 class GURL;
68 virtual int64 GetOriginDiskUsage(const GURL& origin_url) OVERRIDE;
69 virtual void DeleteForOrigin(const GURL& origin_url) OVERRIDE;
76 void ConnectionOpened(const GURL& origin_url, IndexedDBConnection* db);
77 void ConnectionClosed(const GURL& origin_url, IndexedDBConnection* db);
78 void TransactionComplete(const GURL& origin_url);
79 void DatabaseDeleted(const GURL& origin_url);
80 bool WouldBeOverQuota(const GURL& origin_url, int64 additional_bytes);
81 bool IsOverQuota(const GURL& origin_url)
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_service_url.h 10 class GURL;
17 GURL GetGetWalletItemsUrl(size_t user_index);
18 GURL GetGetFullWalletUrl(size_t user_index);
19 GURL GetManageInstrumentsUrl(size_t user_index);
20 GURL GetManageAddressesUrl(size_t user_index);
21 GURL GetAcceptLegalDocumentsUrl(size_t user_index);
22 GURL GetAuthenticateInstrumentUrl(size_t user_index);
23 GURL GetSaveToWalletNoEscrowUrl(size_t user_index);
24 GURL GetSaveToWalletUrl(size_t user_index);
25 GURL GetPassiveAuthUrl(size_t user_index)
    [all...]
  /external/chromium_org/chrome/common/cloud_print/
cloud_print_helpers.h 14 class GURL;
32 std::string AppendPathToUrl(const GURL& url, const std::string& path);
34 GURL GetUrlForSearch(const GURL& cloud_print_server_url);
35 GURL GetUrlForSubmit(const GURL& cloud_print_server_url);
36 GURL GetUrlForPrinterList(const GURL& cloud_print_server_url,
38 GURL GetUrlForPrinterRegistration(const GURL& cloud_print_server_url)
    [all...]
  /external/chromium_org/components/enhanced_bookmarks/
test_image_store.h 16 virtual bool HasKey(const GURL& page_url) OVERRIDE;
17 virtual void Insert(const GURL& page_url,
18 const GURL& image_url,
20 virtual void Erase(const GURL& page_url) OVERRIDE;
21 virtual std::pair<gfx::Image, GURL> Get(const GURL& page_url) OVERRIDE;
22 virtual gfx::Size GetSize(const GURL& page_url) OVERRIDE;
23 virtual void GetAllPageUrls(std::set<GURL>* urls) OVERRIDE;
31 typedef std::map<const GURL, std::pair<gfx::Image, const GURL> > ImageMap
    [all...]

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 91011>>