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

<<11121314151617181920>>

  /external/chromium_org/chromeos/ime/
input_method_descriptor.h 13 #include "url/gurl.h"
28 const GURL& options_page_url,
29 const GURL& input_view_url);
39 const GURL& options_page_url() const { return options_page_url_; }
40 const GURL& input_view_url() const { return input_view_url_; }
76 GURL options_page_url_;
81 GURL input_view_url_;
  /external/chromium_org/chromeos/login/auth/
mock_url_fetchers.h 16 #include "url/gurl.h"
29 const GURL& url,
47 const GURL& url,
62 const GURL& url,
77 const GURL& url,
92 const GURL& url,
115 const GURL& url,
  /external/chromium_org/components/google/core/browser/
google_url_tracker_infobar_delegate.h 9 #include "url/gurl.h"
27 const GURL& search_url);
44 const GURL& search_url() const { return search_url_; }
45 void set_search_url(const GURL& search_url) { search_url_ = search_url; }
50 virtual void Update(const GURL& search_url);
56 const GURL& search_url);
77 GURL search_url_;
  /external/chromium_org/components/precache/core/
precache_url_table.cc 18 std::string GetKey(const GURL& url) {
37 void PrecacheURLTable::AddURL(const GURL& url,
48 bool PrecacheURLTable::HasURL(const GURL& url) {
56 void PrecacheURLTable::DeleteURL(const GURL& url) {
72 void PrecacheURLTable::GetAllDataForTesting(std::map<GURL, base::Time>* map) {
79 GURL url = GURL(statement.ColumnString(0));
precache_url_table.h 12 #include "url/gurl.h"
36 void AddURL(const GURL& url, const base::Time& precache_time);
39 bool HasURL(const GURL& url);
42 void DeleteURL(const GURL& url);
48 void GetAllDataForTesting(std::map<GURL, base::Time>* map);
  /external/chromium_org/content/browser/frame_host/
navigator_impl.h 38 const GURL& url,
46 const GURL& url,
57 const GURL& url,
64 const GURL& url,
65 const std::vector<GURL>& redirect_chain,
86 bool ShouldAssignSiteForURL(const GURL& url);
90 const GURL& url);
  /external/chromium_org/chrome/browser/extensions/
extension_url_rewrite_browsertest.cc 23 #include "url/gurl.h"
40 GURL GetLocationBarTextAsURL() const {
41 return GURL(GetLocationBarText());
61 void TestExtensionURLOverride(const GURL& url) {
71 void TestURLNotShown(const GURL& url) {
80 GURL url(chrome::kChromeUINewTabURL);
90 TestURLNotShown(GURL(chrome::kChromeUINewTabURL));
99 const GURL bookmarks_url(chrome::kChromeUIBookmarksURL);
112 GURL url_with_ref(chrome::kChromeUIBookmarksURL + std::string("#1"));
121 TestExtensionURLOverride(GURL(chrome::kChromeUIBookmarksURL))
    [all...]
  /external/chromium_org/content/browser/
browser_url_handler_impl.cc 12 #include "url/gurl.h"
17 static bool HandleViewSource(GURL* url, BrowserContext* browser_context) {
20 *url = GURL(url->GetContent());
51 *url = GURL(url::kAboutBlankURL);
61 static bool ReverseViewSource(GURL* url, BrowserContext* browser_context) {
74 static bool DebugURLHandler(GURL* url, BrowserContext* browser_context) {
113 GURL* url,
126 GURL* url, const GURL& original, BrowserContext* browser_context) {
130 GURL test_url(original)
    [all...]
transition_request_manager_unittest.cc 19 const GURL url("http://www.test.com/");
20 std::vector<GURL> entering_stylesheets;
30 const GURL url("http://www.test.com/");
31 std::vector<GURL> entering_stylesheets;
45 const GURL url;
46 std::vector<GURL> entering_stylesheets;
62 const GURL url("http://www.test.com/");
63 std::vector<GURL> entering_stylesheets;
82 const GURL url("http://www.test.com/");
83 std::vector<GURL> entering_stylesheets
    [all...]
  /external/chromium_org/content/common/service_worker/
service_worker_types.h 15 #include "url/gurl.h"
58 ServiceWorkerFetchRequest(const GURL& url,
61 const GURL& referrer,
65 GURL url;
70 GURL referrer;
77 ServiceWorkerResponse(const GURL& url,
84 GURL url;
124 GURL scope;
125 GURL url;
132 GURL scope
    [all...]
  /external/chromium_org/storage/common/database/
database_identifier.cc 14 std::string GetIdentifierFromOrigin(const GURL& origin) {
19 GURL GetOriginFromIdentifier(const std::string& identifier) {
33 DatabaseIdentifier DatabaseIdentifier::CreateFromOrigin(const GURL& origin) {
45 // We encode the default port for the specified scheme as 0. GURL
95 GURL url(scheme + "://" + hostname + "/");
135 GURL DatabaseIdentifier::ToOrigin() const {
137 return GURL("file:///");
139 return GURL();
141 return GURL(scheme_ + "://" + hostname_);
142 return GURL(scheme_ + "://" + hostname_ + ":" + base::IntToString(port_))
    [all...]
  /external/chromium_org/android_webview/native/permission/
permission_request_handler.h 14 #include "url/gurl.h"
36 void CancelRequest(const GURL& origin, int64 resources);
39 void PreauthorizePermission(const GURL& origin, int64 resources);
52 RequestIterator FindRequest(const GURL& origin, int64 resources);
63 bool Preauthorized(const GURL& origin, int64 resources);
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_appcache_helper.h 14 #include "url/gurl.h"
25 typedef std::map<GURL, content::AppCacheInfoVector> OriginAppCacheInfoMap;
30 virtual void DeleteAppCacheGroup(const GURL& manifest_url);
64 void AddAppCache(const GURL& manifest_url);
80 virtual void DeleteAppCacheGroup(const GURL& manifest_url) OVERRIDE;
mock_browsing_data_file_system_helper.cc 26 const GURL& origin) {
35 const GURL& origin, bool has_persistent, bool has_temporary,
49 AddFileSystem(GURL("http://fshost1:1/"), false, true, false);
50 AddFileSystem(GURL("http://fshost2:2/"), true, false, true);
51 AddFileSystem(GURL("http://fshost3:3/"), true, true, true);
mock_browsing_data_indexed_db_helper.cc 33 const GURL& origin) {
40 const GURL kOrigin1("http://idbhost1:1/");
41 const GURL kOrigin2("http://idbhost2:2/");
55 for (std::map<GURL, bool>::iterator i = origins_.begin();
61 for (std::map<GURL, bool>::const_iterator i = origins_.begin();
mock_browsing_data_local_storage_helper.cc 27 const GURL& origin) {
35 const GURL kOrigin1("http://host1:1/");
36 const GURL kOrigin2("http://host2:2/");
52 for (std::map<const GURL, bool>::iterator i = origins_.begin();
58 for (std::map<const GURL, bool>::const_iterator i =
  /external/chromium_org/chrome/browser/content_settings/
content_settings_usages_state.h 13 #include "url/gurl.h"
29 typedef std::map<GURL, ContentSetting> StateMap;
35 void OnPermissionSet(const GURL& requesting_origin, bool allowed);
64 std::string GURLToFormattedHost(const GURL& url) const;
69 GURL embedder_url_;
  /external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
experience_sampling.h 14 class GURL;
40 const GURL& destination,
41 const GURL& referrer);
47 const GURL& destination,
48 const GURL& referrer,
  /external/chromium_org/chrome/browser/feedback/
show_feedback_page.cc 14 #include "url/gurl.h"
18 GURL GetTargetTabUrl(int session_id, int index) {
22 return GURL();
31 return GURL();
43 GURL page_url;
  /external/chromium_org/chrome/browser/geolocation/
geolocation_permission_context.cc 35 const GURL& requesting_frame,
36 const GURL& embedder,
47 virtual GURL GetRequestingHostname() const OVERRIDE;
56 GURL requesting_frame_;
57 GURL embedder_;
66 const GURL& requesting_frame,
67 const GURL& embedder,
102 GURL GeolocationPermissionRequest::GetRequestingHostname() const {
144 const GURL& requesting_frame,
148 GURL requesting_frame_origin = requesting_frame.GetOrigin()
    [all...]
  /external/chromium_org/chrome/browser/notifications/
notification_test_util.cc 18 StubNotificationUIManager::StubNotificationUIManager(const GURL& welcome_origin)
19 : notification_(GURL(),
20 GURL(),
65 const GURL& source) {
73 const GURL& source_origin) {
  /external/chromium_org/chrome/browser/predictors/
logged_in_predictor_table.h 13 #include "url/gurl.h"
32 void AddDomainFromURL(const GURL& url);
34 void DeleteDomainFromURL(const GURL& url);
39 void HasUserLoggedIn(const GURL& url, bool* is_present,
45 static std::string GetKey(const GURL& url);
  /external/chromium_org/chrome/browser/search/suggestions/
image_manager_impl_unittest.cc 15 #include "url/gurl.h"
57 GURL output;
58 EXPECT_TRUE(image_manager->GetImageURL(GURL(kTestUrl), &output));
59 EXPECT_EQ(GURL(kTestImageUrl), output);
61 EXPECT_FALSE(image_manager->GetImageURL(GURL("http://b.com"), &output));
  /external/chromium_org/chrome/renderer/prerender/
prerender_dispatcher.h 18 class GURL;
32 bool IsPrerenderURL(const GURL& url) const;
41 void OnPrerenderAddAlias(const GURL& alias);
42 void OnPrerenderRemoveAliases(const std::vector<GURL>& aliases);
58 std::multiset<GURL> running_prerender_urls_;
  /external/chromium_org/components/power/
origin_power_map.h 12 #include "url/gurl.h"
20 typedef std::map<GURL, int> PercentOriginMap;
28 int GetPowerForOrigin(const GURL& url);
32 void AddPowerForOrigin(const GURL& url, double power);
52 typedef std::map<GURL, double> OriginMap;

Completed in 636 milliseconds

<<11121314151617181920>>