Home
last modified time | relevance | path

Searched refs:GURL (Results 1 – 25 of 108) sorted by relevance

12345

/third_party/cef/libcef/common/net/
Durl_util.cc12 GURL MakeGURL(const CefString& url, bool fixup) { in MakeGURL()
13 GURL gurl = GURL(url.ToString()); in MakeGURL()
19 gurl = GURL(new_url); in MakeGURL()
26 bool FixupGURL(GURL& gurl) { in FixupGURL()
28 GURL fixup_url = in FixupGURL()
34 gurl = GURL(); in FixupGURL()
Durl_util.h11 class GURL; variable
17 GURL MakeGURL(const CefString& url, bool fixup);
23 bool FixupGURL(GURL& gurl);
/third_party/cef/libcef/common/extensions/
Dextensions_client.h40 bool IsScriptableURL(const GURL& url, std::string* error) const override;
41 const GURL& GetWebstoreBaseURL() const override;
42 const GURL& GetWebstoreUpdateURL() const override;
43 bool IsBlocklistUpdateURL(const GURL& url) const override;
51 const GURL webstore_base_url_;
52 const GURL webstore_update_url_;
Dextensions_client.cc78 bool CefExtensionsClient::IsScriptableURL(const GURL& url, in IsScriptableURL()
83 const GURL& CefExtensionsClient::GetWebstoreBaseURL() const { in GetWebstoreBaseURL()
87 const GURL& CefExtensionsClient::GetWebstoreUpdateURL() const { in GetWebstoreUpdateURL()
91 bool CefExtensionsClient::IsBlocklistUpdateURL(const GURL& url) const { in IsBlocklistUpdateURL()
/third_party/cef/libcef/browser/net_service/
Dproxy_url_loader_factory.cc173 std::move(callback).Run(net::OK, headers, /*redirect_url=*/GURL()); in OnHeadersReceived()
248 const absl::optional<GURL>& new_url) override;
258 void BeforeRequestReceived(const GURL& original_url,
261 void InterceptResponseReceived(const GURL& original_url,
275 const GURL& redirect_url);
277 net::RedirectInfo MakeRedirectResponseAndInfo(const GURL& new_location);
288 void OnProcessRequestHeaders(const GURL& redirect_url,
340 GURL original_url_;
341 GURL redirect_url_;
342 GURL header_client_redirect_url_;
[all …]
Dcookie_manager_impl.cc164 GURL gurl = GURL(url.ToString()); in VisitUrlCookies()
181 GURL gurl = GURL(url.ToString()); in SetCookie()
200 GURL gurl = GURL(url.ToString()); in DeleteCookies()
242 const GURL& url, in VisitUrlCookiesInternal()
267 const GURL& url, in SetCookieInternal()
319 const GURL& url, in DeleteCookiesInternal()
Dlogin_delegate.h21 class GURL; variable
32 const GURL& origin_url,
42 const GURL& origin_url);
Dcookie_manager_impl.h43 bool VisitUrlCookiesInternal(const GURL& url,
46 bool SetCookieInternal(const GURL& url,
49 bool DeleteCookiesInternal(const GURL& url,
/third_party/cef/libcef/browser/alloy/
Dalloy_content_browser_client.h41 const GURL& site_url) override;
43 const GURL& site_url) override;
45 const GURL& effective_site_url) override;
64 bool IsHandledURL(const GURL& url) override;
87 const GURL& request_url,
98 const GURL& opener_url,
99 const GURL& opener_top_level_frame_url,
102 const GURL& target_url,
158 const GURL& url,
196 const GURL& url,
[all …]
/third_party/cef/libcef/renderer/extensions/
Dextensions_renderer_client.cc71 const GURL& scope, in ExtensionAPIEnabledForServiceWorkerScript()
72 const GURL& script_url) const { in ExtensionAPIEnabledForServiceWorkerScript()
122 GURL* new_url) { in WillSendRequest()
127 GURL(url), frame, transition_type, in WillSendRequest()
129 *new_url = GURL(chrome::kExtensionInvalidRequestURL); in WillSendRequest()
Dextensions_renderer_client.h15 class GURL; variable
66 const GURL& scope,
67 const GURL& script_url) const override;
80 GURL* new_url);
/third_party/cef/libcef/browser/
Dbrowser_info_manager.h75 const GURL& target_url,
87 const GURL& target_url,
95 const GURL& target_url,
172 GURL target_url;
189 const GURL& target_url);
Dbrowser_contents_delegate.h92 void UpdateTargetURL(content::WebContents* source, const GURL& url) override;
131 const GURL& validated_url,
161 const GURL& url,
171 void OnAddressChange(const GURL& url);
174 void OnLoadError(CefRefPtr<CefFrame> frame, const GURL& url, int error_code);
Dorigin_whitelist_impl.cc169 url::Origin::Create(GURL(param->source_origin)))) { in IsMatch()
219 GURL gurl = GURL(source_url); in CefAddCrossOriginWhitelistEntry()
250 GURL gurl = GURL(source_url); in CefRemoveCrossOriginWhitelistEntry()
Dbrowser_contents_delegate.cc125 const GURL& url) { in UpdateTargetURL()
378 const GURL& url = in DidFinishNavigation()
379 (error_code == net::OK ? navigation_handle->GetURL() : GURL()); in DidFinishNavigation()
425 const GURL& validated_url, in DidFailLoad()
508 const GURL& url, in OnLoadEnd()
556 void CefBrowserContentsDelegate::OnAddressChange(const GURL& url) { in OnAddressChange()
580 const GURL& url, in OnLoadError()
/third_party/cef/libcef/browser/chrome/
Dchrome_content_browser_client_cef.h35 const GURL& opener_url,
36 const GURL& opener_top_level_frame_url,
39 const GURL& target_url,
64 const GURL& url,
102 const GURL& url,
Dchrome_browser_delegate.h60 const GURL& target_url,
64 const GURL& target_url,
74 void UpdateTargetURL(content::WebContents* source, const GURL& url) override;
/third_party/cef/libcef/common/
Dparser_impl.cc17 GURL gurl(url.ToString()); in CefParseURL()
49 GURL gurl; in CefCreateURL()
51 gurl = GURL(spec); in CefCreateURL()
70 gurl = GURL(ss.str()); in CefCreateURL()
83 GURL(origin_url.ToString())); in CefFormatUrlForSecurityDisplay()
Drequest_impl.h143 GURL url_;
145 GURL referrer_url_;
162 GURL url_;
164 GURL referrer_url_;
/third_party/cef/libcef/common/net_service/
Dnet_service_util.h26 class GURL; variable
62 const GURL& new_location,
67 bool MakeCefCookie(const GURL& url,
Dnet_service_util.cc32 bool GetCookieDomain(const GURL& url, in GetCookieDomain()
165 const GURL& new_location, in MakeRedirectInfo()
169 GURL location = new_location; in MakeRedirectInfo()
178 GURL::Replacements replacements; in MakeRedirectInfo()
238 bool MakeCefCookie(const GURL& url, in MakeCefCookie()
/third_party/cef/libcef/browser/net/
Dinternal_scheme_handler.cc56 explicit RedirectHandler(const GURL& url) : url_(url) {} in RedirectHandler()
87 GURL url_;
160 GURL url = GURL(request->GetURL().ToString()); in Create()
Dchrome_scheme_handler.cc486 const GURL& path, in StartDataRequest()
533 static bool AllowWebUIForURL(const GURL& url) { in AllowWebUIForURL()
560 const GURL& url) override { in CreateWebUIControllerForURL()
595 const GURL& url) override { in GetWebUIType()
624 const GURL& url) override { in UseWebUIForURL()
671 static bool HandleWebUI(GURL* url, content::BrowserContext* browser_context) { in HandleWebUI()
679 static bool HandleWebUIReverse(GURL* url, in HandleWebUIReverse()
Ddevtools_scheme_handler.cc30 GURL url = GURL(request->GetURL().ToString()); in OnRequest()
/third_party/cef/libcef/browser/extensions/api/tabs/
Dtabs_api.cc202 GURL url; in UpdateURL()
326 GURL effective_document_url(rfh->GetLastCommittedURL()); in CanExecuteScriptOnPage()
330 effective_document_url = GURL(rfh->GetLastCommittedOrigin().Serialize()); in CanExecuteScriptOnPage()
375 const GURL& ExecuteCodeInTabFunction::GetWebViewSrc() const { in GetWebViewSrc()
376 return GURL::EmptyGURL(); in GetWebViewSrc()
424 GURL url(web_contents->GetVisibleURL()); in Run()
473 GURL url(web_contents->GetVisibleURL()); in Run()

12345