HomeSort by relevance Sort by last modified time
    Searched refs:GURL (Results 276 - 300 of 1514) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/net/
view_blob_internals_job_factory.cc 15 bool ViewBlobInternalsJobFactory::IsSupportedURL(const GURL& url) {
url_request_mock_http_job.cc 41 GURL URLRequestMockHTTPJob::GetMockUrl(const FilePath& path) {
48 return GURL(url);
52 GURL URLRequestMockHTTPJob::GetMockViewSourceUrl(const FilePath& path) {
56 return GURL(url);
67 GURL file_url(net::FilePathToFileURL(base_path));
70 net::FileURLToFilePath(GURL(url), &file_path);
84 bool URLRequestMockHTTPJob::IsRedirectResponse(GURL* location,
chrome_cookie_policy.cc 26 int ChromeCookiePolicy::CanGetCookies(const GURL& url,
27 const GURL& first_party) const {
47 int ChromeCookiePolicy::CanSetCookie(const GURL& url,
48 const GURL& first_party,
66 int ChromeCookiePolicy::CheckPolicy(const GURL& url) const {
  /external/chromium/chrome/browser/renderer_host/
download_throttling_resource_handler.h 13 #include "googleurl/src/gurl.h"
36 const GURL& url,
46 virtual bool OnRequestRedirected(int request_id, const GURL& url,
49 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer);
69 GURL url_;
  /external/chromium/chrome/browser/ssl/
ssl_request_info.cc 7 SSLRequestInfo::SSLRequestInfo(const GURL& url,
  /external/chromium/chrome/browser/ui/webui/
shared_resources_data_source.h 16 class GURL;
html_dialog_tab_contents_delegate_unittest.cc 19 #include "googleurl/src/gurl.h"
61 GURL(), base::Time::Now(), 0, 0, GURL(), history::RedirectList(),
69 test_tab_contents_delegate_->UpdateTargetURL(NULL, GURL());
77 NULL, GURL(chrome::kAboutBlankURL), GURL(),
100 NULL, GURL(chrome::kAboutBlankURL), GURL(),
  /external/chromium/chrome/common/extensions/
file_browser_handler.cc 8 #include "googleurl/src/gurl.h"
24 bool FileBrowserHandler::MatchesURL(const GURL& url) const {
  /external/chromium/net/base/
net_util.h 30 class GURL;
83 GURL FilePathToFileURL(const FilePath& path);
86 // file URL must be well-formed (GURL::is_valid() must return true); we don't
89 bool FileURLToFilePath(const GURL& url, FilePath* file_path);
106 std::string GetHostAndPort(const GURL& url);
110 std::string GetHostAndOptionalPort(const GURL& url);
129 void GetIdentityFromURL(const GURL& url,
134 std::string GetHostOrSpecFromURL(const GURL& url);
189 // The input should be the canonicalized ASCII host name from GURL. This
277 string16 GetSuggestedFilename(const GURL& url
    [all...]
  /external/chromium/net/ftp/
ftp_auth_cache.cc 8 #include "googleurl/src/gurl.h"
15 FtpAuthCache::Entry::Entry(const GURL& origin,
29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
37 void FtpAuthCache::Add(const GURL& origin, const string16& username,
55 void FtpAuthCache::Remove(const GURL& origin, const string16& username,
  /external/chromium/net/http/
url_security_manager_win.cc 13 #include "googleurl/src/gurl.h"
34 virtual bool CanUseDefaultCredentials(const GURL& auth_origin) const;
35 virtual bool CanDelegate(const GURL& auth_origin) const;
52 const GURL& auth_origin) const {
105 bool URLSecurityManagerWin::CanDelegate(const GURL& auth_origin) const {
  /external/chromium/net/proxy/
mock_proxy_resolver.h 12 #include "googleurl/src/gurl.h"
27 const GURL& url,
31 const GURL& url() const { return url_; }
43 const GURL url_;
73 virtual int GetProxyForURL(const GURL& url,
proxy_resolver_mac.h 9 #include "googleurl/src/gurl.h"
23 virtual int GetProxyForURL(const GURL& url,
  /external/chromium/chrome/browser/chromeos/login/
registration_screen.cc 17 #include "googleurl/src/gurl.h"
42 set_registration_host_page_url(GURL(kRegistrationHostPageUrl));
53 void RegistrationScreen::set_registration_host_page_url(const GURL& url) {
54 host_page_url_.reset(new GURL(url));
58 scoped_ptr<GURL> RegistrationScreen::host_page_url_;
69 GURL url(*host_page_url_);
103 const GURL& url,
104 const GURL& referrer,
  /external/chromium/chrome/browser/extensions/
extension_webnavigation_unittest.cc 25 const GURL url1("http://www.google.com/");
26 const GURL url2("http://mail.google.com/");
56 const GURL url("http://www.google.com/");
66 navigation_state.TrackFrame(frame_id, GURL(), true, true, contents());
80 const GURL url("http://www.google.com/");
93 navigation_state.TrackFrame(frame_id2, GURL(), false, true, contents());
107 const GURL url("unsafe://www.google.com/");
window_open_apitest.cc 74 GURL::Replacements replace_host;
81 GURL open_tab =
84 GURL open_popup =
88 browser()->OpenURL(open_tab, GURL(), NEW_FOREGROUND_TAB,
90 browser()->OpenURL(open_popup, GURL(), NEW_FOREGROUND_TAB,
  /external/chromium/chrome/browser/
favicon_service.cc 17 const GURL& icon_url,
32 const GURL& page_url,
33 const GURL& icon_url,
48 const GURL& page_url,
69 void FaviconService::SetFaviconOutOfDateForPage(const GURL& page_url) {
82 void FaviconService::SetFavicon(const GURL& page_url,
83 const GURL& icon_url,
user_style_sheet_watcher.cc 46 GURL user_style_sheet() const {
62 void SetStyleSheet(const GURL& url);
65 GURL user_style_sheet_;
105 GURL style_sheet_url;
112 style_sheet_url = GURL(kDataUrlPrefix + css_base64);
120 void UserStyleSheetLoader::SetStyleSheet(const GURL& url) {
162 GURL UserStyleSheetWatcher::user_style_sheet() const {
  /external/chromium/chrome/browser/geolocation/
geolocation_permission_context.cc 59 const GURL& requesting_frame,
60 const GURL& emebedder);
79 const GURL& requesting_frame,
80 const GURL& embedder,
121 const GURL& requesting_frame_url,
143 GURL requesting_frame_url_;
155 const GURL& requesting_frame_url,
224 google_util::AppendGoogleLocaleParam(GURL(kGeolocationLearnMoreUrl)),
225 GURL(), NEW_FOREGROUND_TAB, PageTransition::LINK);
239 const GURL& requesting_frame
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.h 37 #include "googleurl/src/gurl.h"
52 typedef Callback2<GURL /* phishing URL */, bool /* is phishing */>::Type
66 const GURL& url,
103 virtual bool GetValidCachedResult(const GURL& url, bool* is_phishing);
106 virtual bool IsInCache(const GURL& url);
138 typedef std::map<GURL, linked_ptr<CacheState> > PhishingCache;
193 const GURL& url,
202 const GURL& url,
malware_details.h 92 bool IsPublicUrl(const GURL& url) const;
98 const GURL& url);
102 void AddUrl(const GURL& url,
103 const GURL& parent,
105 const std::vector<GURL>* children);
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.h 99 virtual void OnCookiesRead(const GURL& url,
102 virtual void OnCookieChanged(const GURL& url,
106 virtual void OnIndexedDBAccessed(const GURL& url,
109 virtual void OnLocalStorageAccessed(const GURL& url,
112 virtual void OnWebDatabaseAccessed(const GURL& url,
117 virtual void OnAppCacheAccessed(const GURL& manifest_url,
119 virtual void OnGeolocationPermissionSet(const GURL& requesting_frame,
render_view_context_menu.h 81 static bool IsDevToolsURL(const GURL& url);
82 static bool IsInternalResourcesURL(const GURL& url);
117 void OpenURL(const GURL& url,
128 void WriteURLToClipboard(const GURL& url);
141 GURL selection_navigation_url_;
view_source_uitest.cc 49 GURL url(chrome::kViewSourceScheme + std::string(":") +
70 GURL url(test_server_.GetURL(kTestHtml));
74 GURL url_viewsource(chrome::kViewSourceScheme + std::string(":") +
87 GURL url(test_server_.GetURL(kTestHtml));
100 GURL url_viewsource(chrome::kViewSourceScheme + std::string(":") +
  /external/chromium/chrome/browser/download/
save_package.h 21 #include "googleurl/src/gurl.h"
25 class GURL;
115 void SaveFailed(const GURL& save_url);
140 static bool IsSavableURL(const GURL& url);
184 const GURL& url,
199 GURL GetUrlToBeSaved();
209 const std::vector<GURL>& resources_list,
210 const std::vector<GURL>& referrers_list,
211 const std::vector<GURL>& frames_list);
213 void OnReceivedSerializedHtmlData(const GURL& frame_url
    [all...]

Completed in 337 milliseconds

<<11121314151617181920>>