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..fa67249661048fb580912b42ecbcdc5247265c3f 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(), |
+ base::TimeTicks::Now()); |
return scoped_ptr<NavigationHandle>(handle_impl.Pass()); |
} |