Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1257)

Unified Diff: content/public/browser/navigation_handle.cc

Issue 1425823002: (DEPRECATED) Send navigation_start to browser process in DidStartProvisionalLoad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Name change + blink layering Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/navigation_handle.cc
diff --git a/content/public/browser/navigation_handle.cc b/content/public/browser/navigation_handle.cc
index 0df55354e20f97c97772d9c1a1ceba9153927510..744884a103f5e089ac78794c053fa2bf23c0792b 100644
--- a/content/public/browser/navigation_handle.cc
+++ b/content/public/browser/navigation_handle.cc
@@ -24,7 +24,8 @@ scoped_ptr<NavigationHandle> NavigationHandle::CreateNavigationHandleForTesting(
RenderFrameHost* render_frame_host) {
scoped_ptr<NavigationHandleImpl> handle_impl = NavigationHandleImpl::Create(
url,
- static_cast<RenderFrameHostImpl*>(render_frame_host)->frame_tree_node());
+ static_cast<RenderFrameHostImpl*>(render_frame_host)->frame_tree_node(),
+ 0);
return scoped_ptr<NavigationHandle>(handle_impl.Pass());
}

Powered by Google App Engine
This is Rietveld 408576698