Searched refs:url (Results 76 - 100 of 5464) sorted by path

1234567891011>>

/external/chromium_org/
H A DGypAndroid.linux-mips64.mk361 include $(LOCAL_PATH)/url/url_lib.target.linux-mips64.mk
H A DGypAndroid.linux-x86.mk389 include $(LOCAL_PATH)/url/url_lib.target.linux-x86.mk
H A DGypAndroid.linux-x86_64.mk389 include $(LOCAL_PATH)/url/url_lib.target.linux-x86_64.mk
/external/chromium_org/android_webview/browser/
H A Daw_content_browser_client.cc62 const base::string16& url,
102 const base::string16& url,
109 *ignore_navigation = client->ShouldOverrideUrlLoading(url);
111 LOG(WARNING) << "Failed to find the associated render view host for url: "
112 << url;
231 host->GetID(), url::kFileScheme);
296 bool AwContentBrowserClient::AllowGetCookie(const GURL& url, argument
302 return AwCookieAccessPolicy::GetInstance()->AllowGetCookie(url,
310 bool AwContentBrowserClient::AllowSetCookie(const GURL& url, argument
317 return AwCookieAccessPolicy::GetInstance()->AllowSetCookie(url,
100 OnShouldOverrideUrlLoading( int render_frame_id, const base::string16& url, bool* ignore_navigation) argument
326 AllowWorkerDatabase( const GURL& url, const base::string16& name, const base::string16& display_name, unsigned long estimated_size, content::ResourceContext* context, const std::vector<std::pair<int, int> >& render_frames) argument
337 AllowWorkerFileSystem( const GURL& url, content::ResourceContext* context, const std::vector<std::pair<int, int> >& render_frames, base::Callback<void(bool)> callback) argument
346 AllowWorkerIndexedDB( const GURL& url, const base::string16& name, content::ResourceContext* context, const std::vector<std::pair<int, int> >& render_frames) argument
555 AllowPepperSocketAPI( content::BrowserContext* browser_context, const GURL& url, bool private_api, const content::SocketPermissionRequest* params) argument
564 OverrideWebkitPrefs( content::RenderViewHost* rvh, const GURL& url, content::WebPreferences* web_prefs) argument
[all...]
H A Daw_content_browser_client.h62 virtual bool AllowGetCookie(const GURL& url,
68 virtual bool AllowSetCookie(const GURL& url,
76 const GURL& url,
83 const GURL& url,
88 const GURL& url,
167 const GURL& url,
171 const GURL& url,
H A Daw_contents_client_bridge_base.h68 virtual bool ShouldOverrideUrlLoading(const base::string16& url) = 0;
H A Daw_contents_io_thread_client.h93 virtual void NewDownload(const GURL& url,
H A Daw_cookie_access_policy.cc73 .AllowGet(request.url(), request.first_party_for_cookies());
82 .AllowSet(request.url(), request.first_party_for_cookies());
85 bool AwCookieAccessPolicy::AllowGetCookie(const GURL& url, argument
94 return AwStaticCookiePolicy(global, thirdParty).AllowGet(url, first_party);
97 bool AwCookieAccessPolicy::AllowSetCookie(const GURL& url, argument
107 return AwStaticCookiePolicy(global, thirdParty).AllowSet(url, first_party);
116 StaticCookiePolicy::Type AwStaticCookiePolicy::GetPolicy(const GURL& url)
122 bool isFile = url.SchemeIsFile();
132 bool AwStaticCookiePolicy::AllowSet(const GURL& url, argument
135 return StaticCookiePolicy(GetPolicy(url))
139 AllowGet(const GURL& url, const GURL& first_party) const argument
[all...]
H A Daw_cookie_access_policy.h53 bool AllowGetCookie(const GURL& url,
59 bool AllowSetCookie(const GURL& url,
91 bool AllowGet(const GURL& url, const GURL& first_party) const;
92 bool AllowSet(const GURL& url, const GURL& first_party) const;
105 net::StaticCookiePolicy::Type GetPolicy(const GURL& url) const;
H A Daw_dev_tools_manager_delegate.h29 const GURL& url) OVERRIDE;
31 virtual std::string GetPageThumbnailData(const GURL& url) OVERRIDE;
H A Daw_request_interceptor.cc74 QueryForAwWebResourceResponse(request->url(), request);
H A Daw_resource_context.cc22 const GURL& url, const std::string& headers) {
24 if (!url.is_valid()) return;
27 extra_headers_[url.spec()] = headers;
29 extra_headers_.erase(url.spec());
32 std::string AwResourceContext::GetExtraHeaders(const GURL& url) { argument
34 if (!url.is_valid()) return std::string();
37 extra_headers_.find(url.spec());
21 SetExtraHeaders( const GURL& url, const std::string& headers) argument
H A Daw_resource_context.h25 void SetExtraHeaders(const GURL& url, const std::string& headers);
26 std::string GetExtraHeaders(const GURL& url);
H A Daw_web_resource_response.cc26 const GURL& url) OVERRIDE {
H A Dicon_helper.cc99 const GURL& url,
98 DidStartNavigationToPendingEntry( const GURL& url, content::NavigationController::ReloadType reload_type) argument
H A Dicon_helper.h11 #include "url/gurl.h"
33 virtual void OnReceivedTouchIconUrl(const std::string& url,
48 const GURL& url,
/external/chromium_org/android_webview/browser/net/
H A Dandroid_stream_reader_url_request_job.cc112 const GURL& url,
118 scoped_ptr<InputStream> input_stream = delegate->OpenInputStream(env, url);
146 request()->url(),
109 OpenInputStreamOnWorkerThread( scoped_refptr<base::MessageLoopProxy> job_thread_proxy, scoped_ptr<AndroidStreamReaderURLRequestJob::Delegate> delegate, const GURL& url, OnInputStreamOpenedCallback callback) argument
H A Dandroid_stream_reader_url_request_job.h48 const GURL& url) = 0;
H A Dandroid_stream_reader_url_request_job_unittest.cc77 const GURL& url) OVERRIDE {
113 const GURL& url) OVERRIDE {
H A Daw_url_request_context_getter.cc113 url::kFileScheme,
120 url::kDataScheme, new net::DataProtocolHandler());
123 url::kBlobScheme,
124 (*protocol_handlers)[url::kBlobScheme].release());
127 url::kFileSystemScheme,
128 (*protocol_handlers)[url::kFileSystemScheme].release());
H A Daw_url_request_job_factory.cc36 bool AwURLRequestJobFactory::IsHandledURL(const GURL& url) const {
H A Daw_url_request_job_factory.h19 // url with unsupported schemes.
37 virtual bool IsHandledURL(const GURL& url) const OVERRIDE;
/external/chromium_org/android_webview/browser/renderer_host/
H A Daw_resource_dispatcher_host_delegate.cc27 #include "url/url_constants.h"
156 if (request_->url().SchemeIs(android_webview::kContentScheme) &&
162 if (request_->url().SchemeIsFile() &&
164 const GURL& url = request_->url(); local
165 if (!url.has_path() ||
167 (url.path().find(android_webview::kAndroidResourcePath) != 0 &&
168 url.path().find(android_webview::kAndroidAssetPath) != 0)) {
174 if (request_->url().SchemeIs(url
300 HandleExternalProtocol(const GURL& url, int child_id, int route_id) argument
[all...]
H A Daw_resource_dispatcher_host_delegate.h50 virtual bool HandleExternalProtocol(const GURL& url,
H A Dprint_manager.cc115 params->url = settings.url();

Completed in 298 milliseconds

1234567891011>>