| Index: content/browser/frame_host/navigation_controller_impl.h
|
| diff --git a/content/browser/frame_host/navigation_controller_impl.h b/content/browser/frame_host/navigation_controller_impl.h
|
| index 20bb0f6528faf151eef1d3742374bedcf9f471f1..0b5da1349bcadefd5aaab03bcdd1b76360baa36f 100644
|
| --- a/content/browser/frame_host/navigation_controller_impl.h
|
| +++ b/content/browser/frame_host/navigation_controller_impl.h
|
| @@ -450,6 +450,13 @@ class CONTENT_EXPORT NavigationControllerImpl
|
|
|
| std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_;
|
|
|
| + // Used for tracking consecutive reload requests. If the last user-initiated
|
| + // navigation (either browser-initiated or renderer-initiated with a user
|
| + // gesture) was a reload, these hold the ReloadType and timestamp. Otherwise
|
| + // these are ReloadType::NONE and a null timestamp, respectively.
|
| + ReloadType last_committed_reload_type_;
|
| + base::Time last_committed_reload_time_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl);
|
| };
|
|
|
|
|