Home
last modified time | relevance | path

Searched refs:navigation_handle (Results 1 – 16 of 16) sorted by relevance

/third_party/cef/libcef/browser/net/
Dthrottle_handler.cc87 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()
Dthrottle_handler.h22 void CreateThrottlesForNavigation(content::NavigationHandle* navigation_handle,
/third_party/cef/libcef/browser/
Dframe_service_base.h86 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()
Dbrowser_contents_delegate.cc368 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()
Dbrowser_contents_delegate.h129 content::NavigationHandle* navigation_handle) override;
/third_party/cef/libcef/common/
Dframe_util.cc18 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()
Dframe_util.h75 content::NavigationHandle* navigation_handle);
/third_party/cef/libcef/browser/chrome/
Dchrome_content_browser_client_cef.cc309 content::NavigationHandle* navigation_handle) { in CreateThrottlesForNavigation() argument
311 navigation_handle); in CreateThrottlesForNavigation()
312 throttle::CreateThrottlesForNavigation(navigation_handle, throttles); in CreateThrottlesForNavigation()
Dchrome_content_browser_client_cef.h89 content::NavigationHandle* navigation_handle) override;
/third_party/cef/libcef/browser/devtools/
Ddevtools_frontend.cc322 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()
Ddevtools_frontend.h83 content::NavigationHandle* navigation_handle) override;
/third_party/cef/libcef/browser/alloy/
Dalloy_content_browser_client.cc1073 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()
Dalloy_content_browser_client.h125 content::NavigationHandle* navigation_handle) override;
Dalloy_browser_host_impl.h298 content::NavigationHandle* navigation_handle) override;
Dalloy_browser_host_impl.cc1501 content::NavigationHandle* navigation_handle) { in DidFinishNavigation() argument
1507 navigation_handle->GetRedirectChain()); in DidFinishNavigation()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch12800 #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 …]