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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/page/
SecurityOrigin.cpp 68 SecurityOrigin::SecurityOrigin(const KURL& url, SandboxFlags sandboxFlags)
70 , m_protocol(url.protocol().isNull() ? "" : url.protocol().lower())
71 , m_host(url.host().isNull() ? "" : url.host().lower())
72 , m_port(url.port())
93 KURL originURL(ParsedURLString, url.path());
116 // Note that we do not do this check for blob or filesystem url because its origin is file:/// when it is created from local file urls.
122 if (doDirectoryCheck && (!url.hasPath() || url.path().endsWith("/"))
    [all...]
  /packages/apps/Browser/src/com/android/browser/
DataController.java 57 void onQueryUrlIsBookmark(String url, boolean isBookmark);
92 String url = (String) cc.args[0];
94 cb.onQueryUrlIsBookmark(url, isBookmark);
102 public void updateVisitedHistory(String url) {
103 mDataHandler.sendMessage(HISTORY_UPDATE_VISITED, url);
106 public void updateHistoryTitle(String url, String title) {
107 mDataHandler.sendMessage(HISTORY_UPDATE_TITLE, new String[] { url, title });
110 public void queryBookmarkStatus(String url, OnQueryUrlIsBookmark replyTo) {
111 if (url == null || url.trim().length() == 0)
    [all...]
  /external/chromium/base/i18n/
bidi_line_iterator.h 27 bool Open(const string16& text, bool right_to_left, bool url);
  /external/chromium/chrome/browser/autocomplete/
history_provider.h 37 // Fixes up user URL input to make it more possible to match against. Among
49 // Trims "http:" and up to two subsequent slashes from |url|. Returns the
51 // NOTE: For a view-source: URL, this will trim from after "view-source:" and
53 static size_t TrimHttpPrefix(string16* url);
  /external/chromium/chrome/browser/chromeos/
gview_request_interceptor.cc 33 static const char* const kGViewUrlPrefix = "http://docs.google.com/gview?url=";
73 // If supported, build the URL to the Google Document Viewer
74 // including the origial document's URL, then create a new job that
75 // will redirect the browser to this new URL.
77 std::string url(kGViewUrlPrefix);
78 url += EscapePath(request->url().spec());
79 return new net::URLRequestRedirectJob(request, GURL(url));
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/chromeos/login/
auth_response_handler.h 25 // True if this object can handle responses from |url|, false otherwise.
26 virtual bool CanHandle(const GURL& url) = 0;
default_user_images.h 22 // Returns URL to default user image with specifided index.
25 // Checks if the given URL points to one of the default images. If it is,
27 bool IsDefaultImageUrl(const std::string url, int* image_id);
  /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/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.

Completed in 7323 milliseconds

<<11121314151617181920>>