/third_party/cef/libcef/common/net/ |
D | url_util.cc | 12 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()
|
D | url_util.h | 11 class GURL; variable 17 GURL MakeGURL(const CefString& url, bool fixup); 23 bool FixupGURL(GURL& gurl);
|
/third_party/cef/libcef/common/extensions/ |
D | extensions_client.h | 40 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_;
|
D | extensions_client.cc | 78 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/ |
D | proxy_url_loader_factory.cc | 173 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 …]
|
D | cookie_manager_impl.cc | 164 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()
|
D | login_delegate.h | 21 class GURL; variable 32 const GURL& origin_url, 42 const GURL& origin_url);
|
D | cookie_manager_impl.h | 43 bool VisitUrlCookiesInternal(const GURL& url, 46 bool SetCookieInternal(const GURL& url, 49 bool DeleteCookiesInternal(const GURL& url,
|
/third_party/cef/libcef/browser/alloy/ |
D | alloy_content_browser_client.h | 41 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/ |
D | extensions_renderer_client.cc | 71 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()
|
D | extensions_renderer_client.h | 15 class GURL; variable 66 const GURL& scope, 67 const GURL& script_url) const override; 80 GURL* new_url);
|
/third_party/cef/libcef/browser/ |
D | browser_info_manager.h | 75 const GURL& target_url, 87 const GURL& target_url, 95 const GURL& target_url, 172 GURL target_url; 189 const GURL& target_url);
|
D | browser_contents_delegate.h | 92 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);
|
D | origin_whitelist_impl.cc | 169 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()
|
D | browser_contents_delegate.cc | 125 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/ |
D | chrome_content_browser_client_cef.h | 35 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,
|
D | chrome_browser_delegate.h | 60 const GURL& target_url, 64 const GURL& target_url, 74 void UpdateTargetURL(content::WebContents* source, const GURL& url) override;
|
/third_party/cef/libcef/common/ |
D | parser_impl.cc | 17 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()
|
D | request_impl.h | 143 GURL url_; 145 GURL referrer_url_; 162 GURL url_; 164 GURL referrer_url_;
|
/third_party/cef/libcef/common/net_service/ |
D | net_service_util.h | 26 class GURL; variable 62 const GURL& new_location, 67 bool MakeCefCookie(const GURL& url,
|
D | net_service_util.cc | 32 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/ |
D | internal_scheme_handler.cc | 56 explicit RedirectHandler(const GURL& url) : url_(url) {} in RedirectHandler() 87 GURL url_; 160 GURL url = GURL(request->GetURL().ToString()); in Create()
|
D | chrome_scheme_handler.cc | 486 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()
|
D | devtools_scheme_handler.cc | 30 GURL url = GURL(request->GetURL().ToString()); in OnRequest()
|
/third_party/cef/libcef/browser/extensions/api/tabs/ |
D | tabs_api.cc | 202 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()
|