Searched defs:url (Results 126 - 150 of 1265) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/net/
H A Dcookie_policy_browsertest.cc22 GetCookiesTask(const GURL& url, argument
26 : url_(url),
51 std::string GetCookies(const GURL& url) { argument
60 new GetCookiesTask(url, context_getter, &event, &cookies)));
76 GURL url(test_server()->GetURL("set-cookie?cookie1"));
78 std::string cookie = GetCookies(url);
81 ui_test_utils::NavigateToURL(browser(), url); local
83 cookie = GetCookies(url);
96 GURL url(test_server()->GetURL("server-redirect?"));
114 GURL(url
[all...]
H A Dpreconnect.cc23 const GURL& url,
30 NewRunnableFunction(PreconnectOnIOThread, url, motivation,
37 const GURL& url,
57 request_info.url = url;
60 context->GetUserAgent(url));
22 PreconnectOnUIThread( const GURL& url, UrlInfo::ResolutionMotivation motivation, int count) argument
36 PreconnectOnIOThread( const GURL& url, UrlInfo::ResolutionMotivation motivation, int count) argument
H A Dresolve_proxy_msg_helper.h42 void OnResolveProxy(const GURL& url, IPC::Message* reply_msg);
58 PendingRequest(const GURL& url, IPC::Message* reply_msg) : argument
59 url(url), reply_msg(reply_msg), pac_req(NULL) { }
62 GURL url; member in struct:ResolveProxyMsgHelper::PendingRequest
H A Dsdch_dictionary_fetcher.cc25 // Avoid pushing duplicate copy onto queue. We may fetch this url again later
74 const GURL& url,
81 net::SdchManager::Global()->AddSdchDictionary(data, url);
72 OnURLFetchComplete( const URLFetcher* source, const GURL& url, const net::URLRequestStatus& status, int response_code, const ResponseCookies& cookies, const std::string& data) argument
/external/chromium/chrome/browser/
H A Dplatform_util_chromeos.cc24 "https://mail.google.com/mail/?extsrc=mailto&url=";
33 GURL url = FileManagerUtil::GetFileBrowserUrlWithParams(
36 browser->ShowSingletonTab(url);
57 static void OpenURL(const std::string& url) { argument
59 browser->AddSelectedTabWithURL(GURL(url), PageTransition::LINK);
62 void OpenExternal(const GURL& url) { argument
63 if (url.SchemeIs("mailto")) {
65 string_url.append(url.spec());
/external/chromium/chrome/browser/prerender/
H A Dprerender_observer.cc23 void PrerenderObserver::ProvisionalChangeToMainFrameUrl(const GURL& url) { argument
27 MaybeUsePreloadedPage(url);
40 const GURL& url) {
62 bool PrerenderObserver::MaybeUsePreloadedPage(const GURL& url) { argument
64 if (pm && pm->MaybeUsePreloadedPage(tab_contents(), url))
38 OnDidStartProvisionalLoadForFrame(int64 frame_id, bool is_main_frame, const GURL& url) argument
/external/chromium/chrome/browser/remoting/
H A Ddirectory_add_request_unittest.cc38 GURL url; local
41 target_->OnURLFetchComplete(NULL, url, status_ok, response_code,
/external/chromium/chrome/browser/resources/ntp4/tools/
H A Dexterns.js31 var url = function(s) {}; function
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js31 var url = function(s) {}; function
/external/chromium/chrome/browser/ssl/
H A Dssl_request_info.h20 SSLRequestInfo(const GURL& url,
26 const GURL& url() const { return url_; } function in class:SSLRequestInfo
/external/chromium/chrome/browser/ui/download/
H A Ddownload_tab_helper.cc44 void DownloadTabHelper::OnSaveURL(const GURL& url) { argument
46 dlm->DownloadUrl(url, tab_contents()->GetURL(), "", tab_contents());
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_bar_gtk_interactive_uitest.cc38 GURL url = test_server()->GetURL(kSimplePage); local
39 browser()->AddSelectedTabWithURL(url, PageTransition::TYPED);
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dpage_action_with_badge_view.cc38 const GURL& url) {
39 image_view_->UpdateVisibility(contents, url);
37 UpdateVisibility(TabContents* contents, const GURL& url) argument
/external/chromium/chrome/browser/ui/webui/
H A Dhtml_dialog_ui.h87 GURL url; member in struct:HtmlDialogUI::HtmlDialogParams
/external/chromium/chrome/browser/webdata/
H A Dweb_apps_table.cc25 "url LONGVARCHAR,"
28 "image BLOB, UNIQUE (url, width, height))")) {
39 "url LONGVARCHAR UNIQUE,"
44 if (!db_->Execute("CREATE INDEX web_apps_url_index ON web_apps (url)")) {
52 bool WebAppsTable::SetWebAppImage(const GURL& url, const SkBitmap& image) { argument
57 "(url, width, height, image) VALUES (?, ?, ?, ?)"));
64 s.BindString(0, history::HistoryDatabase::GURLToDatabaseURL(url));
71 bool WebAppsTable::GetWebAppImages(const GURL& url, argument
74 "SELECT image FROM web_app_icons WHERE url=?"));
79 s.BindString(0, history::HistoryDatabase::GURLToDatabaseURL(url));
97 SetWebAppHasAllImages(const GURL& url, bool has_all_images) argument
110 GetWebAppHasAllImages(const GURL& url) argument
121 RemoveWebApp(const GURL& url) argument
[all...]
/external/chromium/chrome/common/extensions/
H A Dextension_sidebar_defaults.h32 // A resolved |url| to extension resource (manifest default_page key value)
34 void set_default_page(const GURL& url) { argument
35 default_page_ = url;
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator_unittest.cc25 bool Post(const GURL& url, const string& post_body, argument
/external/chromium/net/base/
H A Dcookie_store.cc11 bool CookieStore::SetCookie(const GURL& url, const std::string& cookie_line) { argument
12 return SetCookieWithOptions(url, cookie_line, CookieOptions());
15 std::string CookieStore::GetCookies(const GURL& url) { argument
16 return GetCookiesWithOptions(url, CookieOptions());
20 const GURL& url,
24 SetCookieWithOptions(url, cookie_lines[i], options);
27 void CookieStore::SetCookies(const GURL& url, argument
29 SetCookiesWithOptions(url, cookie_lines, CookieOptions());
19 SetCookiesWithOptions( const GURL& url, const std::vector<std::string>& cookie_lines, const CookieOptions& options) argument
H A Ddata_url.cc19 bool DataURL::Parse(const GURL& url, std::string* mime_type, argument
21 std::string::const_iterator begin = url.spec().begin();
22 std::string::const_iterator end = url.spec().end();
76 // For base64, we may have url-escaped whitespace which is not part
H A Dhost_port_pair.cc20 HostPortPair HostPortPair::FromURL(const GURL& url) { argument
21 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
H A Dmime_sniffer_unittest.cc15 std::string url; member in struct:net::SnifferTest
26 GURL(tests[i].url),
36 const std::string& url,
39 SniffMimeType(content.data(), content.size(), GURL(url),
52 GURL url; local
54 SniffMimeType(buf, 0, url, type_hint, &mime_type);
56 SniffMimeType(buf, 1, url, type_hint, &mime_type);
58 SniffMimeType(buf, 2, url, type_hint, &mime_type);
127 "invalid-url",
35 SniffMimeType(const std::string& content, const std::string& url, const std::string& mime_type_hint) argument
H A Dnet_util_posix.cc24 bool FileURLToFilePath(const GURL& url, FilePath* path) { argument
29 if (!url.is_valid())
32 // Firefox seems to ignore the "host" of a file url if there is one. That is,
36 std::string old_path = url.path();
H A Dopenssl_memory_private_key_store.cc36 virtual bool StorePrivateKey(const GURL& url, EVP_PKEY* pkey) { argument
H A Dstatic_cookie_policy_unittest.cc23 int CanGetCookies(const GURL& url, const GURL& first_party) { argument
24 return policy_.CanGetCookies(url, first_party);
26 int CanSetCookie(const GURL& url, const GURL& first_party) { argument
27 return policy_.CanSetCookie(url, first_party, std::string());
/external/chromium/net/http/
H A Dhttp_auth_filter.cc43 bool HttpAuthFilterWhitelist::IsValid(const GURL& url, argument
50 return rules_.Matches(url);

Completed in 844 milliseconds

1234567891011>>