Index: content/browser/frame_host/render_frame_host_impl.cc |
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
index f7f959e201905f974da72117752bd8f7bc42d220..a64e429f3ad924e2b52cc413ee8494daecb49862 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -8,6 +8,7 @@ |
#include "base/containers/hash_tables.h" |
#include "base/lazy_instance.h" |
#include "base/metrics/user_metrics_action.h" |
+#include "base/time/time.h" |
#include "content/browser/child_process_security_policy_impl.h" |
#include "content/browser/frame_host/cross_process_frame_connector.h" |
#include "content/browser/frame_host/cross_site_transferring_request.h" |
@@ -840,6 +841,7 @@ void RenderFrameHostImpl::NavigateToURL(const GURL& url) { |
params.url = url; |
params.transition = PAGE_TRANSITION_LINK; |
params.navigation_type = FrameMsg_Navigate_Type::NORMAL; |
+ params.browser_navigation_start = base::TimeTicks::Now(); |
Navigate(params); |
} |