| 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(). |
| 87 void ReloadToRefreshContent(bool check_for_repost) override; | 88 void ReloadToRefreshContent(bool check_for_repost) override; |
| 88 void ReloadBypassingCache(bool check_for_repost) override; | 89 void ReloadBypassingCache(bool check_for_repost) override; |
| 89 void ReloadOriginalRequestURL(bool check_for_repost) override; | 90 void ReloadOriginalRequestURL(bool check_for_repost) override; |
| 90 void ReloadDisableLoFi(bool check_for_repost) override; | 91 void ReloadDisableLoFi(bool check_for_repost) override; |
| 91 void NotifyEntryChanged(const NavigationEntry* entry) override; | 92 void NotifyEntryChanged(const NavigationEntry* entry) override; |
| 92 void CopyStateFrom(const NavigationController& source) override; | 93 void CopyStateFrom(const NavigationController& source) override; |
| 93 void CopyStateFromAndPrune(NavigationController* source, | 94 void CopyStateFromAndPrune(NavigationController* source, |
| 94 bool replace_entry) override; | 95 bool replace_entry) override; |
| 95 bool CanPruneAllButLastCommitted() override; | 96 bool CanPruneAllButLastCommitted() override; |
| 96 void PruneAllButLastCommitted() override; | 97 void PruneAllButLastCommitted() override; |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 // these are ReloadType::NONE and a null timestamp, respectively. | 446 // these are ReloadType::NONE and a null timestamp, respectively. |
| 446 ReloadType last_committed_reload_type_; | 447 ReloadType last_committed_reload_type_; |
| 447 base::Time last_committed_reload_time_; | 448 base::Time last_committed_reload_time_; |
| 448 | 449 |
| 449 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 450 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 450 }; | 451 }; |
| 451 | 452 |
| 452 } // namespace content | 453 } // namespace content |
| 453 | 454 |
| 454 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 455 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |