Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_BROWSER_BACK_FORWARD_NAVIGATOR_H_ | |
| 6 #define CHROME_BROWSER_UI_BROWSER_BACK_FORWARD_NAVIGATOR_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 class TabContentsWrapperDelegate; | |
| 10 | |
| 11 namespace browser { | |
| 12 | |
| 13 class BrowserBackForwardNavigator { | |
|
Ben Goodger (Google)
2011/05/31 16:00:00
See my note in the previous file about moving this
shinyak (Google)
2011/06/09 02:29:04
Done.
| |
| 14 | |
|
Ben Goodger (Google)
2011/05/31 16:00:00
nit: no new line
shinyak (Google)
2011/06/09 02:29:04
Done.
| |
| 15 public: | |
| 16 static void GoBack(TabContentsWrapperDelegate* delegate, int flags); | |
| 17 static void GoForward(TabContentsWrapperDelegate* delegate, int flags); | |
| 18 static void NavigateToIndex(TabContentsWrapperDelegate* delegate, | |
| 19 int index, int flags); | |
| 20 }; | |
| 21 | |
| 22 } // namespace browser | |
| 23 | |
| 24 #endif // CHROME_BROWSER_UI_BROWSER_BACK_FORWARD_NAVIGATOR_H_ | |
| OLD | NEW |