| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 virtual int GetEntryCount() const OVERRIDE; | 51 virtual int GetEntryCount() const OVERRIDE; |
| 52 virtual NavigationEntry* GetEntryAtIndex(int index) const OVERRIDE; | 52 virtual NavigationEntry* GetEntryAtIndex(int index) const OVERRIDE; |
| 53 virtual NavigationEntry* GetEntryAtOffset(int offset) const OVERRIDE; | 53 virtual NavigationEntry* GetEntryAtOffset(int offset) const OVERRIDE; |
| 54 virtual void DiscardNonCommittedEntries() OVERRIDE; | 54 virtual void DiscardNonCommittedEntries() OVERRIDE; |
| 55 virtual NavigationEntry* GetPendingEntry() const OVERRIDE; | 55 virtual NavigationEntry* GetPendingEntry() const OVERRIDE; |
| 56 virtual int GetPendingEntryIndex() const OVERRIDE; | 56 virtual int GetPendingEntryIndex() const OVERRIDE; |
| 57 virtual NavigationEntry* GetTransientEntry() const OVERRIDE; | 57 virtual NavigationEntry* GetTransientEntry() const OVERRIDE; |
| 58 virtual void SetTransientEntry(NavigationEntry* entry) OVERRIDE; | 58 virtual void SetTransientEntry(NavigationEntry* entry) OVERRIDE; |
| 59 virtual void LoadURL(const GURL& url, | 59 virtual void LoadURL(const GURL& url, |
| 60 const Referrer& referrer, | 60 const Referrer& referrer, |
| 61 PageTransition type, | 61 ui::PageTransition type, |
| 62 const std::string& extra_headers) OVERRIDE; | 62 const std::string& extra_headers) OVERRIDE; |
| 63 virtual void LoadURLWithParams(const LoadURLParams& params) OVERRIDE; | 63 virtual void LoadURLWithParams(const LoadURLParams& params) OVERRIDE; |
| 64 virtual void LoadIfNecessary() OVERRIDE; | 64 virtual void LoadIfNecessary() OVERRIDE; |
| 65 virtual bool CanGoBack() const OVERRIDE; | 65 virtual bool CanGoBack() const OVERRIDE; |
| 66 virtual bool CanGoForward() const OVERRIDE; | 66 virtual bool CanGoForward() const OVERRIDE; |
| 67 virtual bool CanGoToOffset(int offset) const OVERRIDE; | 67 virtual bool CanGoToOffset(int offset) const OVERRIDE; |
| 68 virtual void GoBack() OVERRIDE; | 68 virtual void GoBack() OVERRIDE; |
| 69 virtual void GoForward() OVERRIDE; | 69 virtual void GoForward() OVERRIDE; |
| 70 virtual void GoToIndex(int index) OVERRIDE; | 70 virtual void GoToIndex(int index) OVERRIDE; |
| 71 virtual void GoToOffset(int offset) OVERRIDE; | 71 virtual void GoToOffset(int offset) OVERRIDE; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 TimeSmoother time_smoother_; | 413 TimeSmoother time_smoother_; |
| 414 | 414 |
| 415 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 415 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
| 416 | 416 |
| 417 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 417 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 418 }; | 418 }; |
| 419 | 419 |
| 420 } // namespace content | 420 } // namespace content |
| 421 | 421 |
| 422 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 422 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |