| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 SessionStorageNamespace* GetDefaultSessionStorageNamespace() override; | 75 SessionStorageNamespace* GetDefaultSessionStorageNamespace() override; |
| 76 void SetMaxRestoredPageID(int32 max_id) override; | 76 void SetMaxRestoredPageID(int32 max_id) override; |
| 77 int32 GetMaxRestoredPageID() const override; | 77 int32 GetMaxRestoredPageID() const override; |
| 78 bool NeedsReload() const override; | 78 bool NeedsReload() const override; |
| 79 void SetNeedsReload() override; | 79 void SetNeedsReload() override; |
| 80 void CancelPendingReload() override; | 80 void CancelPendingReload() override; |
| 81 void ContinuePendingReload() override; | 81 void ContinuePendingReload() override; |
| 82 bool IsInitialNavigation() const override; | 82 bool IsInitialNavigation() const override; |
| 83 bool IsInitialBlankNavigation() const override; | 83 bool IsInitialBlankNavigation() const override; |
| 84 void Reload(bool check_for_repost) override; | 84 void Reload(bool check_for_repost) override; |
| 85 void ReloadToRefreshContent(bool check_for_repost) override; |
| 85 void ReloadIgnoringCache(bool check_for_repost) override; | 86 void ReloadIgnoringCache(bool check_for_repost) override; |
| 86 void ReloadOriginalRequestURL(bool check_for_repost) override; | 87 void ReloadOriginalRequestURL(bool check_for_repost) override; |
| 87 void ReloadDisableLoFi(bool check_for_repost) override; | 88 void ReloadDisableLoFi(bool check_for_repost) override; |
| 88 void NotifyEntryChanged(const NavigationEntry* entry) override; | 89 void NotifyEntryChanged(const NavigationEntry* entry) override; |
| 89 void CopyStateFrom(const NavigationController& source) override; | 90 void CopyStateFrom(const NavigationController& source) override; |
| 90 void CopyStateFromAndPrune(NavigationController* source, | 91 void CopyStateFromAndPrune(NavigationController* source, |
| 91 bool replace_entry) override; | 92 bool replace_entry) override; |
| 92 bool CanPruneAllButLastCommitted() override; | 93 bool CanPruneAllButLastCommitted() override; |
| 93 void PruneAllButLastCommitted() override; | 94 void PruneAllButLastCommitted() override; |
| 94 void ClearAllScreenshots() override; | 95 void ClearAllScreenshots() override; |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 TimeSmoother time_smoother_; | 441 TimeSmoother time_smoother_; |
| 441 | 442 |
| 442 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 443 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
| 443 | 444 |
| 444 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 445 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 445 }; | 446 }; |
| 446 | 447 |
| 447 } // namespace content | 448 } // namespace content |
| 448 | 449 |
| 449 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 450 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |