HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 426 - 450 of 3582) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/chromeos/panels/
panel_browsertest.cc 41 GURL url("data:text/html," + HTML);
45 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED);
79 GURL url("data:text/html," + HTML);
83 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED);
  /external/chromium/chrome/browser/chromeos/
wm_overview_title.h 24 // WmOverviewTitle contains the title and URL of an associated tab
32 void SetUrl(const GURL& url);
38 // This contains the url of the tab contents.
  /external/chromium/chrome/browser/download/
save_file.cc 12 : BaseFile(FilePath(), info->url, GURL(), 0, linked_ptr<net::FileStream>()),
  /external/chromium/chrome/browser/history/
download_create_info.cc 13 const GURL& url,
21 url_chain(1, url),
75 url().spec().c_str(),
86 const GURL& DownloadCreateInfo::url() const { function in class:DownloadCreateInfo
visit_tracker.cc 47 // URL. This won't always be correct. For example, if a render process has
59 if (transitions[i].page_id <= page_id && transitions[i].url == referrer) {
71 const GURL& url,
80 t.url = url;
  /external/chromium/chrome/browser/importer/
toolbar_importer_unittest.cc 47 // 11. No <url> in a <bookmark> section.
54 "<url>http://www.google.com/</url> "
75 "<url>http://www.google.com/</url> "
96 "<url>http://www.google.com/</url> "
117 "<url>http://www.google.com/</url> "
138 "<url>http://www.google.com/</url>
    [all...]
  /external/chromium/chrome/browser/
platform_util_linux.cc 71 void OpenExternal(const GURL& url) {
72 if (url.SchemeIs("mailto"))
73 XDGEmail(url.spec());
75 XDGOpen(url.spec());
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_source.h 30 // Takes a string containing an URL and returns an URL containing a CGI
33 std::string GetLocalizedUrl(const std::string& url) const;
  /external/chromium/chrome/browser/remoting/
remoting_resources_source.h 28 // Takes a string containing an URL and returns an URL containing a CGI
31 std::string GetLocalizedUrl(const std::string& url) const;
  /external/chromium/chrome/browser/safe_browsing/
malware_details.cc 96 bool MalwareDetails::IsPublicUrl(const GURL& url) const {
97 return url.SchemeIs("http"); // TODO(panayiotis): also skip internal urls.
100 // Looks for a Resource for the given url in resources_. If found, it
104 const GURL& url) {
105 safe_browsing::ResourceMap::iterator it = resources_.find(url.spec());
110 // Create the resource for |url|.
114 new_resource->set_url(url.spec());
116 resources_[url.spec()] = new_resource;
120 void MalwareDetails::AddUrl(const GURL& url,
124 if (!IsPublicUrl(url))
    [all...]
safe_browsing_util_unittest.cc 29 GURL url("http://a.b.c/1/2.html?param=1");
30 safe_browsing_util::GenerateHostsToCheck(url, &hosts);
31 safe_browsing_util::GeneratePathsToCheck(url, &paths);
42 url = GURL("http://a.b.c.d.e.f.g/1.html");
43 safe_browsing_util::GenerateHostsToCheck(url, &hosts);
44 safe_browsing_util::GeneratePathsToCheck(url, &paths);
55 url = GURL("http://a.b/saw-cgi/eBayISAPI.dll/");
56 safe_browsing_util::GeneratePathsToCheck(url, &paths);
63 // Tests the url canonicalization according to the Safe Browsing spec.
266 GURL url(tests[i].input_url)
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_parser.h 21 // Invoked for each parameter of the template URL while parsing. If this
33 // parameters out of the URL. For example when importing from another browser
34 // we remove any parameter identifying that browser. If set to NULL, the URL
42 TemplateURL* url);
  /external/chromium/chrome/browser/sync/engine/
http_post_provider_interface.h 28 // Set the URL to POST to.
29 virtual void SetURL(const char* url, int port) = 0;
40 // Returns true if the URL request succeeded. If the request failed,
  /external/chromium/chrome/browser/tabs/
tab_finder.h 24 // TabFinder is used to locate a tab by URL. TabFinder matches tabs based
25 // on the tabs current url, or the start of the redirect chain.
37 // Returns the tab that matches the specified url. If a tab is found the
41 const GURL& url,
68 // Returns true if the tab's current url is |url|, or the start of the
69 // redirect chain for the tab is |url|.
70 bool TabMatchesURL(TabContents* tab_contents, const GURL& url);
73 // url. Returns NULL if there are no tabs matching the specified url
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
external_protocol_dialog_gtk.h 18 explicit ExternalProtocolDialogGtk(const GURL& url);
  /external/chromium/chrome/browser/ui/
status_bubble.h 23 // On hover, expand status bubble to fit long URL after this delay.
35 // Sets the bubble text to a URL - if given a non-empty URL, this will cause
36 // the bubble to fade in and remain open until given an empty URL or until
41 virtual void SetURL(const GURL& url, const string16& languages) = 0;
  /external/chromium/chrome/browser/web_applications/
web_app_unittest.cc 45 const GURL url("http://www.foo.com/bar");
49 web_app_info.app_url = url;
58 EXPECT_EQ(url, info.url);
  /external/chromium/chrome/common/
favicon_url.h 11 // The favicon url from the render.
22 FaviconURL(const GURL& url, IconType type);
25 // The url of the icon.
  /external/chromium/chrome/common/net/
test_url_fetcher_factory.h 48 const GURL& url,
63 // URL we were created with. Because of how we're using URLFetcher url()
64 // always returns an empty URL. Chances are you'll want to use original_url()
94 const GURL& url,
129 // // You know that class SomeService will request url http://a.com/ and you
146 // If no fake response is set for the given URL this method will return NULL.
150 const GURL& url,
154 // Sets the fake response for a given URL. If success is true we will serve
156 void SetFakeResponse(const std::string& url,
    [all...]
  /external/chromium/net/base/
openssl_private_key_store.h 36 // Called to store a private key generated via <keygen> while visiting |url|.
41 virtual bool StorePrivateKey(const GURL& url, EVP_PKEY* pkey) = 0;
  /external/chromium/net/data/proxy_resolver_v8_unittest/
simple.js 4 function FindProxyForURL(url, host) {
11 if (url.substring(0, 6) != "https:" &&
  /external/chromium/net/http/
url_security_manager_unittest.cc 18 const char* url; member in struct:net::__anon4136::TestData
50 // The URL security manager takes ownership of |auth_filter|.
56 GURL gurl(kTestDataList[i].url);
61 << " Run: " << i << " URL: '" << gurl << "'";
69 // The URL security manager takes ownership of |auth_filter|.
75 GURL gurl(kTestDataList[i].url);
78 << " Run: " << i << " URL: '" << gurl << "'";
89 GURL gurl(kTestDataList[i].url);
  /external/chromium/net/proxy/
init_proxy_resolver.h 31 // (2) Custom PAC script if a URL was given.
58 // whether to use auto-detect or the custom PAC URL. Finally, if auto-detect
59 // was used we may now have resolved that to a specific script URL.
67 PacURL(bool auto_detect, const GURL& url)
68 : auto_detect(auto_detect), url(url) {}
70 GURL url; member in struct:net::InitProxyResolver::PacURL
101 // Tries restarting using the next fallback PAC URL:
111 // Returns the current PAC URL we are fetching/testing.
proxy_resolver_mac.h 23 virtual int GetProxyForURL(const GURL& url,
  /external/chromium/webkit/glue/media/
web_data_source.h 20 // Initialize this object using |url|. This object calls |callback| when
22 virtual void Initialize(const std::string& url,

Completed in 1404 milliseconds

<<11121314151617181920>>