Index: content/browser/frame_host/navigation_handle_impl.h |
diff --git a/content/browser/frame_host/navigation_handle_impl.h b/content/browser/frame_host/navigation_handle_impl.h |
index 8821dda8d4d17300e55b6441feed910fffcb0bfc..f468614b02f52095b55024d9c254abfc1a11ce9a 100644 |
--- a/content/browser/frame_host/navigation_handle_impl.h |
+++ b/content/browser/frame_host/navigation_handle_impl.h |
@@ -70,6 +70,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle { |
// NavigationHandle implementation: |
const GURL& GetURL() override; |
bool IsInMainFrame() override; |
+ const base::TimeTicks& GetNavigationStart() override; |
bool IsPost() override; |
const Referrer& GetReferrer() override; |
bool HasUserGesture() override; |
@@ -95,11 +96,6 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle { |
const GURL& new_referrer_url, |
bool new_is_external_protocol) override; |
- // The time the navigation started, recorded either in the renderer or browser |
- // process. Corresponds to Navigation Timing API Standard. |
- // TODO(csharrison) add this to the public class and mark this override. |
- const base::TimeTicks& GetNavigationStart(); |
- |
NavigatorDelegate* GetDelegate() const; |
void set_net_error_code(net::Error net_error_code) { |