/external/chromium/chrome/browser/renderer_host/ |
download_resource_handler.h | 32 const GURL& url, 41 virtual bool OnRequestRedirected(int request_id, const GURL& url, 48 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer);
|
download_throttling_resource_handler.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);
|
offline_resource_handler.h | 39 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer); 54 bool IsRemote(const GURL& url) const; 60 bool ShouldShowOfflinePage(const GURL& url) const;
|
save_file_resource_handler.h | 21 const GURL& url, 27 // Saves the redirected URL to final_url_, we need to use the original 28 // URL to match original request. 29 virtual bool OnRequestRedirected(int request_id, const GURL& url, 36 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer);
|
/external/chromium/chrome/browser/search_engines/ |
template_url_fetcher.cc | 44 const GURL& url, 50 // URL of the OSDD. 51 GURL url() const { return osdd_url_; } function in class:TemplateURLFetcher::RequestDelegate 121 const GURL& url, 133 // the returned information results in a valid search URL. 141 !template_url_->url() || !template_url_->url()->SupportsReplacement()) { 158 // Generate new keyword from URL in OSDD for none autodetected case. 159 // Previous keyword was generated from URL where OSDD was placed and 162 GURL keyword_url(template_url_->url()->url()) [all...] |
/external/chromium/chrome/browser/ui/webui/ |
most_visited_handler.h | 27 // - The URL blacklist: URLs we do not want to show in the thumbnails list. It 28 // is a dictionary for quick access (it associates a dummy boolean to the URL 32 // the URL and the value is a dictionary with title, url and index. This is 90 // Puts the passed URL in the blacklist (so it does not show as a thumbnail). 91 void BlacklistURL(const GURL& url); 94 // |url|. 95 std::string GetDictionaryKeyForURL(const std::string& url); 97 // Gets the page data for a pinned URL at a given index. This returns 102 void RemovePinnedURL(const GURL& url); [all...] |
/external/chromium/chrome/common/ |
visitedlink_common.cc | 36 bool VisitedLinkCommon::IsVisited(const GURL& url) const { 37 return IsVisited(url.spec().data(), url.spec().size()); 67 // Uses the top 64 bits of the MD5 sum of the canonical URL as the fingerprint,
|
/external/chromium/net/base/ |
net_util_posix.cc | 24 bool FileURLToFilePath(const GURL& url, FilePath* path) { 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();
|
/external/chromium/net/proxy/ |
mock_proxy_resolver.h | 27 const GURL& url, 31 const GURL& url() const { return url_; } function in class:net::MockAsyncProxyResolverBase::Request 73 virtual int GetProxyForURL(const GURL& url,
|
proxy_bypass_rules.cc | 27 virtual bool Matches(const GURL& url) const { 28 if (optional_port_ != -1 && url.EffectiveIntPort() != optional_port_) 31 if (!optional_scheme_.empty() && url.scheme() != optional_scheme_) 36 return MatchPattern(StringToLowerASCII(url.host()), hostname_pattern_); 63 virtual bool Matches(const GURL& url) const { 64 const std::string& host = url.host(); 79 // Rule for matching a URL that is an IP address, if that IP address falls 95 virtual bool Matches(const GURL& url) const { 96 if (!url.HostIsIPAddress()) 99 if (!optional_scheme_.empty() && url.scheme() != optional_scheme_ [all...] |
/external/chromium/net/socket_stream/ |
socket_stream_metrics.cc | 15 SocketStreamMetrics::SocketStreamMetrics(const GURL& url) 21 if (url.SchemeIs("ws")) 23 else if (url.SchemeIs("wss"))
|
/external/chromium/webkit/glue/ |
webclipboard_impl.cc | 37 std::string WebClipboardImpl::URLToMarkup(const WebURL& url, 40 markup.append(url.spec()); 49 std::string WebClipboardImpl::URLToImageMarkup(const WebURL& url, 52 markup.append(url.spec()); 160 void WebClipboardImpl::writeURL(const WebURL& url, const WebString& title) { 163 scw.WriteBookmark(title, url.spec()); 164 scw.WriteHTML(UTF8ToUTF16(URLToMarkup(url, title)), ""); 165 scw.WriteText(UTF8ToUTF16(std::string(url.spec()))); 169 const WebImage& image, const WebURL& url, const WebString& title) { 186 if (!url.isEmpty()) [all...] |
webdropdata.cc | 19 : url(drag_data.url()), 47 result.setURL(url);
|
/external/webkit/LayoutTests/fast/url/resources/ |
utilities.js | 4 function canonicalize(url) 9 document.write("<a id='" + id + "' href='" + url + "'></a>"); 13 function setBaseURL(url) 26 document.write('<base href="' + url + '">'); 29 function segments(url) 34 document.write("<a id='" + id + "' href='" + url + "'></a>");
|
/external/webkit/Source/WebCore/bindings/js/ |
JSWebSocketCustom.cpp | 59 return throwVMError(exec, createSyntaxError(exec, "wrong URL")); 60 KURL url = context->completeURL(urlString); 64 webSocket->connect(url, ec); 69 webSocket->connect(url, protocol, ec);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8WebSocketCustom.cpp | 62 return throwError("Empty URL", V8Proxy::SyntaxError); 69 const KURL& url = context->completeURL(toWebCoreString(urlstring)); local 75 webSocket->connect(url, ec); 81 webSocket->connect(url, toWebCoreString(protocol), ec);
|
/external/webkit/Source/WebCore/css/ |
StyleSheet.cpp | 83 KURL StyleSheet::completeURL(const String& url) const 85 // Always return a null URL when passed a null string. 88 if (url.isNull()) 90 return KURL(baseURL(), url);
|
/external/webkit/Source/WebCore/html/ |
HTMLViewSourceDocument.h | 38 static PassRefPtr<HTMLViewSourceDocument> create(Frame* frame, const KURL& url, const String& mimeType) 40 return adoptRef(new HTMLViewSourceDocument(frame, url, mimeType)); 61 PassRefPtr<Element> addLink(const AtomicString& url, bool isAnchor);
|
/external/webkit/Source/WebCore/inspector/ |
InspectorBrowserDebuggerAgent.h | 66 void setXHRBreakpoint(ErrorString*, const String& url); 67 void removeXHRBreakpoint(ErrorString*, const String& url); 79 void willSendXMLHttpRequest(const String& url);
|
InspectorPageAgent.h | 62 void openInInspectedWindow(ErrorString*, const String& url); 68 void inspectedURLChanged(const String& url); 69 void didCommitLoad(const String& url);
|
/external/webkit/Source/WebCore/loader/ |
DocumentWriter.cpp | 65 // and always contains the result of evaluating a javascript: url. 70 begin(m_frame->document()->url(), true, m_frame->document()->securityOrigin()); 100 PassRefPtr<Document> DocumentWriter::createDocument(const KURL& url) 103 return PluginDocument::create(m_frame, url); 105 return PlaceholderDocument::create(m_frame, url); 106 return DOMImplementation::createDocument(m_mimeType, m_frame, url, m_frame->inViewSourceMode()); 109 void DocumentWriter::begin(const KURL& url, bool dispatch, SecurityOrigin* origin) 121 RefPtr<Document> document = createDocument(url); 126 document = SinkDocument::create(m_frame, url); 130 bool resetScripting = !(m_frame->loader()->stateMachine()->isDisplayingInitialEmptyDocument() && m_frame->document()->securityOrigin()->isSecureTransitionTo(url)); [all...] |
NavigationScheduler.h | 81 void scheduleRedirect(double delay, const String& url); 82 void scheduleLocationChange(PassRefPtr<SecurityOrigin>, const String& url, const String& referrer, bool lockHistory = true, bool lockBackForwardList = true); 94 bool shouldScheduleNavigation(const String& url) const;
|
/external/webkit/Source/WebCore/loader/icon/ |
IconRecord.h | 79 static PassRefPtr<IconRecord> create(const String& url) 81 return adoptRef(new IconRecord(url)); 102 IconRecord(const String& url);
|
/external/webkit/Source/WebCore/page/ |
UserScript.h | 41 UserScript(const String& source, const KURL& url, 45 , m_url(url) 54 const KURL& url() const { return m_url; } function in class:WebCore::UserScript
|
UserStyleSheet.h | 41 UserStyleSheet(const String& source, const KURL& url, 45 , m_url(url) 54 const KURL& url() const { return m_url; } function in class:WebCore::UserStyleSheet
|