| OLD | NEW | 
|    1 // Copyright 2013 The Chromium Authors. All rights reserved. |    1 // Copyright 2013 The Chromium Authors. All rights reserved. | 
|    2 // Use of this source code is governed by a BSD-style license that can be |    2 // Use of this source code is governed by a BSD-style license that can be | 
|    3 // found in the LICENSE file. |    3 // found in the LICENSE file. | 
|    4  |    4  | 
|    5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |    5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 
|    6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |    6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 
|    7  |    7  | 
|    8 #include <stddef.h> |    8 #include <stddef.h> | 
|    9 #include <stdint.h> |    9 #include <stdint.h> | 
|   10  |   10  | 
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   77   const SessionStorageNamespaceMap& GetSessionStorageNamespaceMap() |   77   const SessionStorageNamespaceMap& GetSessionStorageNamespaceMap() | 
|   78       const override; |   78       const override; | 
|   79   SessionStorageNamespace* GetDefaultSessionStorageNamespace() override; |   79   SessionStorageNamespace* GetDefaultSessionStorageNamespace() override; | 
|   80   bool NeedsReload() const override; |   80   bool NeedsReload() const override; | 
|   81   void SetNeedsReload() override; |   81   void SetNeedsReload() override; | 
|   82   void CancelPendingReload() override; |   82   void CancelPendingReload() override; | 
|   83   void ContinuePendingReload() override; |   83   void ContinuePendingReload() override; | 
|   84   bool IsInitialNavigation() const override; |   84   bool IsInitialNavigation() const override; | 
|   85   bool IsInitialBlankNavigation() const override; |   85   bool IsInitialBlankNavigation() const override; | 
|   86   void Reload(bool check_for_repost) override; |   86   void Reload(bool check_for_repost) override; | 
|   87   // TODO(toyoshim): Merge ReloadToRefreshContent() to Reload(). |  | 
|   88   void ReloadToRefreshContent(bool check_for_repost) override; |  | 
|   89   void ReloadBypassingCache(bool check_for_repost) override; |   87   void ReloadBypassingCache(bool check_for_repost) override; | 
|   90   void ReloadOriginalRequestURL(bool check_for_repost) override; |   88   void ReloadOriginalRequestURL(bool check_for_repost) override; | 
|   91   void ReloadDisableLoFi(bool check_for_repost) override; |   89   void ReloadDisableLoFi(bool check_for_repost) override; | 
|   92   void NotifyEntryChanged(const NavigationEntry* entry) override; |   90   void NotifyEntryChanged(const NavigationEntry* entry) override; | 
|   93   void CopyStateFrom(const NavigationController& source) override; |   91   void CopyStateFrom(const NavigationController& source) override; | 
|   94   void CopyStateFromAndPrune(NavigationController* source, |   92   void CopyStateFromAndPrune(NavigationController* source, | 
|   95                              bool replace_entry) override; |   93                              bool replace_entry) override; | 
|   96   bool CanPruneAllButLastCommitted() override; |   94   bool CanPruneAllButLastCommitted() override; | 
|   97   void PruneAllButLastCommitted() override; |   95   void PruneAllButLastCommitted() override; | 
|   98   void ClearAllScreenshots() override; |   96   void ClearAllScreenshots() override; | 
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  446   // these are ReloadType::NONE and a null timestamp, respectively. |  444   // these are ReloadType::NONE and a null timestamp, respectively. | 
|  447   ReloadType last_committed_reload_type_; |  445   ReloadType last_committed_reload_type_; | 
|  448   base::Time last_committed_reload_time_; |  446   base::Time last_committed_reload_time_; | 
|  449  |  447  | 
|  450   DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |  448   DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 
|  451 }; |  449 }; | 
|  452  |  450  | 
|  453 }  // namespace content |  451 }  // namespace content | 
|  454  |  452  | 
|  455 #endif  // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |  453 #endif  // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 
| OLD | NEW |