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 "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 virtual void CancelPendingReload() OVERRIDE; | 81 virtual void CancelPendingReload() OVERRIDE; |
82 virtual void ContinuePendingReload() OVERRIDE; | 82 virtual void ContinuePendingReload() OVERRIDE; |
83 virtual bool IsInitialNavigation() const OVERRIDE; | 83 virtual bool IsInitialNavigation() const OVERRIDE; |
84 virtual void Reload(bool check_for_repost) OVERRIDE; | 84 virtual void Reload(bool check_for_repost) OVERRIDE; |
85 virtual void ReloadIgnoringCache(bool check_for_repost) OVERRIDE; | 85 virtual void ReloadIgnoringCache(bool check_for_repost) OVERRIDE; |
86 virtual void ReloadOriginalRequestURL(bool check_for_repost) OVERRIDE; | 86 virtual void ReloadOriginalRequestURL(bool check_for_repost) OVERRIDE; |
87 virtual void NotifyEntryChanged(const NavigationEntry* entry, | 87 virtual void NotifyEntryChanged(const NavigationEntry* entry, |
88 int index) OVERRIDE; | 88 int index) OVERRIDE; |
89 virtual void CopyStateFrom( | 89 virtual void CopyStateFrom( |
90 const NavigationController& source) OVERRIDE; | 90 const NavigationController& source) OVERRIDE; |
91 virtual void CopyStateFromAndPrune( | 91 virtual void CopyStateFromAndPrune(NavigationController* source, |
92 NavigationController* source) OVERRIDE; | 92 bool replace_entry) OVERRIDE; |
93 virtual bool CanPruneAllButLastCommitted() OVERRIDE; | 93 virtual bool CanPruneAllButLastCommitted() OVERRIDE; |
94 virtual void PruneAllButLastCommitted() OVERRIDE; | 94 virtual void PruneAllButLastCommitted() OVERRIDE; |
95 virtual void ClearAllScreenshots() OVERRIDE; | 95 virtual void ClearAllScreenshots() OVERRIDE; |
96 | 96 |
97 // The session storage namespace that all child RenderViews belonging to | 97 // The session storage namespace that all child RenderViews belonging to |
98 // |instance| should use. | 98 // |instance| should use. |
99 SessionStorageNamespace* GetSessionStorageNamespace( | 99 SessionStorageNamespace* GetSessionStorageNamespace( |
100 SiteInstance* instance); | 100 SiteInstance* instance); |
101 | 101 |
102 // Returns the index of the specified entry, or -1 if entry is not contained | 102 // Returns the index of the specified entry, or -1 if entry is not contained |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 TimeSmoother time_smoother_; | 399 TimeSmoother time_smoother_; |
400 | 400 |
401 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 401 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
402 | 402 |
403 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 403 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
404 }; | 404 }; |
405 | 405 |
406 } // namespace content | 406 } // namespace content |
407 | 407 |
408 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 408 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
OLD | NEW |