/third_party/cef/libcef/browser/net/ |
D | throttle_handler.cc | 87 void CreateThrottlesForNavigation(content::NavigationHandle* navigation_handle, in CreateThrottlesForNavigation() argument 91 const bool is_main_frame = navigation_handle->IsInMainFrame(); in CreateThrottlesForNavigation() 92 const bool is_pdf = navigation_handle->IsPdf(); in CreateThrottlesForNavigation() 93 const auto global_id = frame_util::GetGlobalId(navigation_handle); in CreateThrottlesForNavigation() 97 !is_main_frame ? navigation_handle->GetParentFrame()->GetGlobalId() in CreateThrottlesForNavigation() 104 navigation_handle, in CreateThrottlesForNavigation()
|
D | throttle_handler.h | 22 void CreateThrottlesForNavigation(content::NavigationHandle* navigation_handle,
|
/third_party/cef/libcef/browser/ |
D | frame_service_base.h | 86 void DidFinishNavigation(NavigationHandle* navigation_handle) final { in DidFinishNavigation() argument 91 if (!navigation_handle->HasCommitted() || in DidFinishNavigation() 92 navigation_handle->IsSameDocument() || in DidFinishNavigation() 93 navigation_handle->IsPageActivation()) { in DidFinishNavigation() 97 if (navigation_handle->GetRenderFrameHost() == render_frame_host_) { in DidFinishNavigation()
|
D | browser_contents_delegate.cc | 368 content::NavigationHandle* navigation_handle) { in DidFinishNavigation() argument 369 const net::Error error_code = navigation_handle->GetNetErrorCode(); in DidFinishNavigation() 373 if (!navigation_handle->HasCommitted() && error_code == net::OK) in DidFinishNavigation() 376 const bool is_main_frame = navigation_handle->IsInMainFrame(); in DidFinishNavigation() 377 const auto global_id = frame_util::GetGlobalId(navigation_handle); in DidFinishNavigation() 379 (error_code == net::OK ? navigation_handle->GetURL() : GURL()); in DidFinishNavigation() 402 DCHECK(navigation_handle->HasCommitted()); in DidFinishNavigation() 406 if (!navigation_handle->IsSameDocument()) { in DidFinishNavigation() 407 OnLoadStart(frame.get(), navigation_handle->GetPageTransition()); in DidFinishNavigation() 419 OnLoadError(frame.get(), navigation_handle->GetURL(), error_code); in DidFinishNavigation()
|
D | browser_contents_delegate.h | 129 content::NavigationHandle* navigation_handle) override;
|
/third_party/cef/libcef/common/ |
D | frame_util.cc | 18 content::NavigationHandle* navigation_handle) { in GetGlobalId() argument 20 return navigation_handle->HasCommitted() in GetGlobalId() 21 ? navigation_handle->GetRenderFrameHost()->GetGlobalId() in GetGlobalId() 22 : navigation_handle->GetPreviousRenderFrameHostId(); in GetGlobalId()
|
D | frame_util.h | 75 content::NavigationHandle* navigation_handle);
|
/third_party/cef/libcef/browser/chrome/ |
D | chrome_content_browser_client_cef.cc | 309 content::NavigationHandle* navigation_handle) { in CreateThrottlesForNavigation() argument 311 navigation_handle); in CreateThrottlesForNavigation() 312 throttle::CreateThrottlesForNavigation(navigation_handle, throttles); in CreateThrottlesForNavigation()
|
D | chrome_content_browser_client_cef.h | 89 content::NavigationHandle* navigation_handle) override;
|
/third_party/cef/libcef/browser/devtools/ |
D | devtools_frontend.cc | 322 content::NavigationHandle* navigation_handle) { in ReadyToCommitNavigation() argument 323 content::RenderFrameHost* frame = navigation_handle->GetRenderFrameHost(); in ReadyToCommitNavigation() 324 if (navigation_handle->IsInMainFrame()) { in ReadyToCommitNavigation() 333 navigation_handle->GetURL().DeprecatedGetOriginAsURL().spec(); in ReadyToCommitNavigation()
|
D | devtools_frontend.h | 83 content::NavigationHandle* navigation_handle) override;
|
/third_party/cef/libcef/browser/alloy/ |
D | alloy_content_browser_client.cc | 1073 content::NavigationHandle* navigation_handle) { in CreateThrottlesForNavigation() argument 1078 PDFIFrameNavigationThrottle::MaybeCreateThrottleFor(navigation_handle); in CreateThrottlesForNavigation() 1083 navigation_handle, std::make_unique<ChromePdfStreamDelegate>()); in CreateThrottlesForNavigation() 1088 throttle::CreateThrottlesForNavigation(navigation_handle, throttles); in CreateThrottlesForNavigation()
|
D | alloy_content_browser_client.h | 125 content::NavigationHandle* navigation_handle) override;
|
D | alloy_browser_host_impl.h | 298 content::NavigationHandle* navigation_handle) override;
|
D | alloy_browser_host_impl.cc | 1501 content::NavigationHandle* navigation_handle) { in DidFinishNavigation() argument 1507 navigation_handle->GetRedirectChain()); in DidFinishNavigation()
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 12800 #include "content/public/browser/navigation_handle.h" 13958 if (!navigation_handle->IsSameDocument()) { 13959 OnLoadStart(frame.get(), navigation_handle->GetPageTransition()); 13963 + if (!navigation_handle->IsSameDocument()) { 13964 + content::RenderFrameHost* render_frame_host = navigation_handle->GetRenderFrameHost(); 13983 + PageTransitionCoreTypeIs(navigation_handle->GetPageTransition(), 13987 + navigation_handle->GetPageTransition()); 13995 - OnLoadError(frame.get(), navigation_handle->GetURL(), error_code); 13998 + CefString cef_url(navigation_handle->GetURL().spec()); 13999 + CefString cef_method(navigation_handle->IsPost() ? "POST" : "GET"); [all …]
|