HomeSort by relevance Sort by last modified time
    Searched refs:GURL (Results 326 - 350 of 5716) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/history/
top_sites.h 26 #include "googleurl/src/gurl.h"
60 bool SetPageThumbnail(const GURL& url,
79 bool GetPageThumbnail(const GURL& url,
85 virtual bool GetPageThumbnailScore(const GURL& url, ThumbnailScore* score);
90 bool GetTemporaryPageThumbnailScore(const GURL& url, ThumbnailScore* score);
109 void AddBlacklistedURL(const GURL& url);
112 void RemoveBlacklistedURL(const GURL& url);
115 bool IsBlacklisted(const GURL& url);
123 void AddPinnedURL(const GURL& url, size_t index);
126 bool IsURLPinned(const GURL& url)
    [all...]
  /external/chromium/chrome/common/extensions/
extension_set.h 15 #include "googleurl/src/gurl.h"
39 std::string GetIdByURL(const GURL& url) const;
46 const Extension* GetByURL(const GURL& url) const;
50 bool InSameExtent(const GURL& old_url, const GURL& new_url) const;
58 bool ExtensionBindingsAllowed(const GURL& url) const;
  /external/chromium/net/base/
sdch_manager.h 32 #include "googleurl/src/gurl.h"
50 virtual void Schedule(const GURL& dictionary_url) = 0;
180 const GURL& url,
187 const GURL& url() const { return url_; }
192 bool CanAdvertise(const GURL& target_url);
197 const std::set<int>& ports, const GURL& dictionary_url);
201 bool CanUse(const GURL& referring_url);
208 static bool DomainMatch(const GURL& url, const std::string& restriction);
218 // The GURL that arrived with the text_ in a URL request to specify where
220 const GURL url_
    [all...]
  /external/chromium/net/url_request/
url_request_throttler_manager.h 17 #include "googleurl/src/gurl.h"
44 const GURL& url);
54 void OverrideEntryForTests(const GURL& url, URLRequestThrottlerEntry* entry);
60 void EraseEntryForTests(const GURL& url);
81 std::string GetIdFromUrl(const GURL& url) const;
123 GURL::Replacements url_id_replacements_;
  /external/chromium/webkit/glue/
context_menu.h 12 #include "googleurl/src/gurl.h"
51 GURL link_url;
55 GURL unfiltered_link_url;
60 GURL src_url;
67 GURL page_url;
70 GURL frame_url;
  /external/chromium_org/android_webview/browser/
aw_cookie_access_policy.h 22 class GURL;
46 bool AllowGetCookie(const GURL& url,
47 const GURL& first_party,
52 bool AllowSetCookie(const GURL& url,
53 const GURL& first_party,
  /external/chromium_org/ash/screensaver/
screensaver_view.h 12 #include "url/gurl.h"
28 ASH_EXPORT void ShowScreensaver(const GURL& url);
43 static void ShowScreensaver(const GURL& url);
51 explicit ScreensaverView(const GURL& url);
73 ASH_EXPORT bool IsScreensaverShowingURL(const GURL& url);
76 GURL url_;
  /external/chromium_org/chrome/browser/history/
history_notifications.h 15 #include "url/gurl.h"
61 std::set<GURL> favicon_urls;
66 KeywordSearchUpdatedDetails(const GURL& url,
71 GURL url;
78 explicit KeywordSearchDeletedDetails(const GURL& url);
81 GURL url;
url_utils_unittest.cc 59 {"http://www.google.com:80", "http://www.google.com/gurl/is/smart"},
64 EXPECT_TRUE(HaveSameSchemeHostAndPort(GURL(true_cases[i].s1),
65 GURL(true_cases[i].s2)))
79 EXPECT_FALSE(HaveSameSchemeHostAndPort(GURL(false_cases[i].s1),
80 GURL(false_cases[i].s2)))
120 EXPECT_EQ(GURL("http://www.google.com/test?q#r"),
121 ToggleHTTPAndHTTPS(GURL("https://www.google.com/test?q#r")));
122 EXPECT_EQ(GURL("https://www.google.com:137/"),
123 ToggleHTTPAndHTTPS(GURL("http://www.google.com:137/")));
124 EXPECT_EQ(GURL::EmptyGURL()
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
syncable_file_system_util.h 32 GURL GetSyncableFileSystemRootURI(const GURL& origin);
42 CreateSyncableFileSystemURL(const GURL& origin, const base::FilePath& path);
95 bool IsSyncFSDirectoryOperationEnabled(const GURL& origin);
101 bool IsV2EnabledForOrigin(const GURL& origin);
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator_win.cc 18 GURL GetURLToOpen(Profile* profile) {
24 return GURL(params);
26 GetDefaultSearchURLForSearchTerms(profile, params) : GURL();
34 const std::vector<GURL>& startup_urls) {
43 if (startup_urls[0] != GURL(chrome::kChromeUINewTabURL))
  /external/chromium_org/chrome/renderer/plugins/
plugin_uma.h 12 #include "url/gurl.h"
56 const GURL& plugin_src);
59 const GURL& plugin_src);
73 void ExtractFileExtension(const GURL& src, std::string* extension);
76 const GURL& plugin_src);
79 PluginType SrcToPluginType(const GURL& src);
  /external/chromium_org/chrome/renderer/prerender/
prerender_dispatcher.h 18 class GURL;
32 bool IsPrerenderURL(const GURL& url) const;
40 void OnPrerenderAddAlias(const GURL& alias);
41 void OnPrerenderRemoveAliases(const std::vector<GURL>& aliases);
57 std::multiset<GURL> running_prerender_urls_;
  /external/chromium_org/chrome/renderer/searchbox/
search_bouncer.cc 18 bool SearchBouncer::ShouldFork(const GURL& url) const {
21 for (std::vector<GURL>::const_iterator it = search_urls_.begin();
30 bool SearchBouncer::IsNewTabPage(const GURL& url) const {
45 std::vector<GURL> search_urls,
46 GURL new_tab_page_url) {
  /external/chromium_org/content/browser/
bookmarklet_browsertest.cc 19 NavigateToURL(shell(), GURL("data:text/html,start page"));
36 NavigateToURL(shell(), GURL(
48 NavigateToURL(shell(), GURL(
57 shell()->LoadURL(GURL("javascript:'hello world'"));
66 shell()->LoadURL(GURL(
  /external/chromium_org/net/base/registry_controlled_domains/
registry_controlled_domain.h 50 The RegistryControlledDomainService examines the hostname of a GURL passed to
68 * Rules should have been normalized using the same canonicalization that GURL
110 GURL to normalize rules, and validating the rules.
121 class GURL;
157 // information, but no subdomains, from the given GURL. Returns an empty
158 // string if the GURL is invalid, has no host (e.g. a file: URL), has multiple
176 NET_EXPORT std::string GetDomainAndRegistry(const GURL& gurl,
179 // Like the GURL version, but takes a host (which is canonicalized internally)
180 // instead of a full GURL
    [all...]
  /external/chromium_org/net/base/
sdch_manager.h 33 #include "url/gurl.h"
51 virtual void Schedule(const GURL& dictionary_url) = 0;
181 const GURL& url,
188 const GURL& url() const { return url_; }
193 bool CanAdvertise(const GURL& target_url);
198 const std::set<int>& ports, const GURL& dictionary_url);
202 bool CanUse(const GURL& referring_url);
209 static bool DomainMatch(const GURL& url, const std::string& restriction);
219 // The GURL that arrived with the text_ in a URL request to specify where
221 const GURL url_
    [all...]
  /external/chromium_org/ui/base/dragdrop/
gtk_dnd_util.h 15 class GURL;
70 const GURL& url,
78 GURL* url,
83 std::vector<GURL>* urls);
87 GURL* url,
  /external/chromium/chrome/browser/extensions/
extension_process_manager.h 22 class GURL;
39 const GURL& url,
42 ExtensionHost* CreateView(const GURL& url,
46 const GURL& url,
48 ExtensionHost* CreatePopup(const GURL& url, Browser* browser);
50 const GURL& url,
52 ExtensionHost* CreateInfobar(const GURL& url,
61 const GURL& url);
68 virtual SiteInstance* GetSiteInstanceForURL(const GURL& url);
79 virtual RenderProcessHost* GetExtensionProcess(const GURL& url)
    [all...]
extension_webnavigation_api.h 20 #include "googleurl/src/gurl.h"
39 const GURL& url,
45 GURL GetUrl(int64 frame_id) const;
67 GURL url; // URL of this frame.
92 const GURL& validated_url,
97 const GURL& url,
101 const GURL& validated_url,
106 virtual void DidOpenURL(const GURL& url,
107 const GURL& referrer,
115 bool IsReferenceFragmentNavigation(int64 frame_id, const GURL& url)
    [all...]
  /external/chromium/chrome/browser/notifications/
desktop_notification_service.h 23 #include "googleurl/src/gurl.h"
53 void RequestPermission(const GURL& origin,
75 void GrantPermission(const GURL& origin);
76 void DenyPermission(const GURL& origin);
88 static string16 CreateDataUrl(const GURL& icon_url,
109 std::vector<GURL> GetAllowedOrigins();
112 std::vector<GURL> GetBlockedOrigins();
115 void ResetAllowedOrigin(const GURL& origin);
118 void ResetBlockedOrigin(const GURL& origin);
125 ContentSetting GetContentSetting(const GURL& origin)
    [all...]
  /external/chromium_org/content/public/browser/
navigation_entry.h 18 class GURL;
51 virtual void SetURL(const GURL& url) = 0;
52 virtual const GURL& GetURL() const = 0;
55 virtual void SetBaseURLForDataURL(const GURL& url) = 0;
56 virtual const GURL& GetBaseURLForDataURL() const = 0;
69 virtual void SetVirtualURL(const GURL& url) = 0;
70 virtual const GURL& GetVirtualURL() const = 0;
125 virtual const GURL& GetUserTypedURL() const = 0;
162 virtual void SetOriginalRequestURL(const GURL& original_url) = 0;
163 virtual const GURL& GetOriginalRequestURL() const = 0
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_url.h 12 #include "url/gurl.h"
22 // When a FileSystemURL instance is created for a GURL (for filesystem: scheme),
85 static FileSystemURL CreateForTest(const GURL& url);
86 static FileSystemURL CreateForTest(const GURL& origin,
91 static bool ParseFileSystemSchemeURL(const GURL& url,
92 GURL* origin,
100 const GURL& origin() const { return origin_; }
125 GURL ToGURL() const;
149 explicit FileSystemURL(const GURL& filesystem_url);
150 FileSystemURL(const GURL& origin
    [all...]
  /external/chromium_org/chrome/browser/content_settings/
content_settings_default_provider_unittest.cc 16 #include "url/gurl.h"
42 GURL(),
43 GURL(),
55 GURL(),
56 GURL(),
63 GURL(),
64 GURL(),
76 GURL(),
77 GURL(),
84 GURL("http://example.com/")
    [all...]
  /external/chromium_org/chrome/browser/google/
google_util_unittest.cc 21 return google_util::IsGoogleHomePageUrl(GURL(url));
25 return google_util::IsGoogleSearchUrl(GURL(url));
29 return google_util::StartsWithCommandLineGoogleBaseURL(GURL(url));
215 EXPECT_TRUE(IsGoogleDomainUrl(GURL("http://www.google.com"),
218 EXPECT_TRUE(IsGoogleDomainUrl(GURL("http://google.com"),
221 EXPECT_TRUE(IsGoogleDomainUrl(GURL("http://www.google.ca"),
224 EXPECT_TRUE(IsGoogleDomainUrl(GURL("http://www.google.biz.tj"),
227 EXPECT_TRUE(IsGoogleDomainUrl(GURL("http://www.google.com/search?q=thing"),
230 EXPECT_TRUE(IsGoogleDomainUrl(GURL("http://www.google.com/webhp"),
235 EXPECT_FALSE(IsGoogleDomainUrl(GURL("http://www.google.notrealtld")
    [all...]

Completed in 135 milliseconds

<<11121314151617181920>>