Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: chrome/browser/ui/browser_back_forward_navigator.h

Issue 6893046: added CTRL+Click and SHIFT+Click handler for context menu, Back and Forward. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: make event_utils::DispositionFromEventFlags not view-specific. Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698