HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 1126 - 1150 of 2774) sorted by null

<<41424344454647484950>>

  /external/chromium/chrome/browser/autocomplete/
extension_app_provider_unittest.cc 48 std::string url; member in struct:ExtensionApps
61 kExtensionApps[i].url);
64 history::URLRow info(GURL(kExtensionApps[i].url));
100 // Try with URL matching.
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.cc 52 virtual bool SetCookieWithOptions(const GURL& url,
61 virtual std::string GetCookiesWithOptions(const GURL& url,
66 virtual void DeleteCookie(const GURL& url,
432 const GURL& url, net::CompletionCallback* callback) {
463 automation_details_iter->second.tab_handle, url,
470 int tab_handle, bool success, const GURL& url, const std::string& cookies,
484 OnGetCookiesHostResponseInternal(tab_handle, success, url, cookies,
493 int tab_handle, bool success, const GURL& url, const std::string& cookies,
504 cookie_store->SetCookieWithOptions(url, cookies, net::CookieOptions());
510 // The cookie for this URL is only valid until it is read by the callback
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_history_api.cc 32 value->SetString(keys::kUrlKey, row.url().spec());
161 bool HistoryFunction::GetUrlFromValue(Value* value, GURL* url) {
173 url->Swap(&temp_url);
229 GURL url; local
230 if (!GetUrlFromValue(value, &url))
234 hs->QueryURL(url,
235 true, // Retrieve full history of a URL.
316 GURL url; local
317 if (!GetUrlFromValue(value, &url))
321 hs->AddPage(url, history::SOURCE_EXTENSION)
334 GURL url; local
    [all...]
  /external/chromium/chrome/browser/history/
url_database.h 24 // Encapsulates an SQL database that holds URL info. This is a subset of the
43 // punycode, so this function should be used instead of url.spec() when
50 static std::string GURLToDatabaseURL(const GURL& url);
52 // URL table functions -------------------------------------------------------
54 // Looks up a url given an id. Fills info with the data. Returns true on
62 // Looks up the given URL and if it exists, fills the given pointers with the
63 // associated info and returns the ID of that URL. If the info pointer is
64 // NULL, no information about the URL will be filled in, only the ID will be
65 // returned. Returns 0 if the URL was not found.
66 URLID GetRowForURL(const GURL& url, URLRow* info)
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_error_handler.cc 22 request_url_(request->url()),
134 DVLOG(1) << "CompleteCancelRequest() url: " << request->url().spec();
162 DVLOG(1) << "CompleteContinueRequest() url: " << request->url().spec();
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper.h 150 void OnPageContents(const GURL& url,
155 const GURL& url,
157 void OnMsgThumbnail(const GURL& url,
175 // Whether the current URL is starred.
  /external/chromium/chrome/browser/
user_style_sheet_watcher.cc 51 // base64 URL. Posts the base64 URL back to the UI thread.
62 void SetStyleSheet(const GURL& url);
64 // The user style sheet as a base64 data:// URL.
110 // WebKit knows about data urls, so convert the file to a data url.
120 void UserStyleSheetLoader::SetStyleSheet(const GURL& url) {
124 user_style_sheet_ = url;
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 49 url = CONFIG['license_path'] % {
65 logging.debug('Requesting %s' % url)
67 resp, content = client.request(url, 'GET')
  /external/chromium/net/http/
http_stream_factory.cc 88 GURL HttpStreamFactory::ApplyHostMappingRules(const GURL& url,
97 return url.ReplaceComponents(replacements);
99 return url;
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder.h 5 // URL filename encoder goals:
17 // in URL paths, but not in filenames, such as '?'.
61 // URL File
90 // Helper class for converting a URL into a filename.
93 // Given a |url| and a |base_path|, returns a filename which represents this
94 // |url|. |url| may include URL escaping such as %21 for !
98 static std::string Encode(const std::string& url, std::string base_path,
102 std::string url_no_scheme = UrlUtilities::GetUrlHostPath(url);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
sslsocketfactory.cc 62 Url<char> url("/", remote_.IPAsString(), remote_.port());
64 detect_->set_server_url(url.url());
  /external/chromium/webkit/glue/
weburlloader_impl.cc 146 // Extracts the information from a data: url.
147 bool GetInfoFromDataURL(const GURL& url,
153 if (net::DataURL::Parse(url, &mime_type, &charset, data)) {
176 const GURL& url,
179 response->setURL(url);
258 net::GetSuggestedFilename(url, value, "", string16()));
317 bool CanHandleDataURL(const GURL& url) const;
365 GURL url = request.url(); local
366 if (url.SchemeIs("data") && CanHandleDataURL(url))
    [all...]
  /external/webkit/Source/WebCore/html/
PluginDocument.cpp 94 m_embedElement->setAttribute(srcAttr, document()->url().string());
143 PluginDocument::PluginDocument(Frame* frame, const KURL& url)
144 : HTMLDocument(frame, url)
  /external/webkit/Source/WebCore/loader/icon/
IconLoader.cpp 77 LOG_ERROR("Failed to start load for icon at url %s", m_frame->loader()->iconURL().string().ascii().data());
99 finishLoading(handle ? handle->firstRequest().url() : KURL(), 0);
123 finishLoading(handle ? handle->firstRequest().url() : KURL(), 0);
145 finishLoading(handle ? handle->firstRequest().url() : KURL(), m_resourceLoader->resourceData());
163 // there is a page URL referencing it.
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.h 59 const KURL& url() const;
60 void setURL(const KURL& url);
125 // average size, mostly due to URL and Header Map strings
139 ResourceResponseBase(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename);
  /external/webkit/Source/WebCore/platform/network/qt/
ResourceHandleQt.cpp 90 // If credentials were specified for this request, add them to the url,
92 KURL urlWithCredentials(firstRequest().url());
132 QNetworkCacheMetaData data = cache->metaData(request.url());
159 // If credentials were specified for this request, add them to the url,
161 KURL urlWithCredentials(d->m_firstRequest.url());
  /external/webkit/Source/WebKit/chromium/public/
WebURLRequest.h 85 explicit WebURLRequest(const WebURL& url) : m_private(0)
88 setURL(url);
97 WEBKIT_API WebURL url() const;
WebURLResponse.h 63 explicit WebURLResponse(const WebURL& url) : m_private(0)
66 setURL(url);
75 WEBKIT_API WebURL url() const;
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebKitPluginClient.defs 40 url :data_t;
61 url :data_t;
67 url :data_t;
73 url :data_t;
196 url :data_t;
206 url :data_t;
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptDebugDelegate.h 64 fromURL:(NSString *)url
71 fromURL:(NSURL *)url
78 fromURL:(NSURL *)url
  /external/webkit/Source/WebKit/wx/
WebFrame.h 83 void SetURLElement(WebDOMElement* url) { m_urlElement = url; }
113 void LoadURL(const wxString& url);
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.h 92 const String& url() const { return m_url; } function in class:WebKit::WebFrameProxy
114 void didStartProvisionalLoad(const String& url);
115 void didReceiveServerRedirectForProvisionalLoad(const String& url);
  /external/webkit/Tools/DumpRenderTree/qt/
WorkQueueItemQt.h 50 LoadItem(const QString &url, const QString &target, QWebPage *page)
52 , m_url(url)
57 QString url() const { return m_url; } function in class:LoadItem
  /external/webkit/Tools/MiniBrowser/qt/
UrlLoader.cpp 71 QUrl url(qstr, QUrl::StrictMode);
72 if (url.isValid()) {
74 m_browserWindow->load(url.toString());
  /external/webkit/Tools/MiniBrowser/win/
BrowserView.cpp 145 WKURLRef url = WKURLCreateWithCFURL(cfURL); local
149 WKPageLoadURL(page, url);
150 WKRelease(url);

Completed in 821 milliseconds

<<41424344454647484950>>