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

Side by Side Diff: chrome/browser/bookmarks/bookmark_context_menu_controller.h

Issue 3027041: Remove obviously unneeded forward declarations in chrome/browser/[abef]*/*.h. (Closed)
Patch Set: oops, missed one previously Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_BROWSER_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_H_
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_H_ 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "app/menus/simple_menu_model.h" 11 #include "app/menus/simple_menu_model.h"
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "chrome/browser/bookmarks/base_bookmark_model_observer.h" 13 #include "chrome/browser/bookmarks/base_bookmark_model_observer.h"
14 #include "gfx/native_widget_types.h" 14 #include "gfx/native_widget_types.h"
15 15
16 class Browser;
17 class PageNavigator; 16 class PageNavigator;
18 class Profile; 17 class Profile;
19 18
20 // An interface implemented by an object that performs actions on the actual 19 // An interface implemented by an object that performs actions on the actual
21 // menu for the controller. 20 // menu for the controller.
22 class BookmarkContextMenuControllerDelegate { 21 class BookmarkContextMenuControllerDelegate {
23 public: 22 public:
24 virtual ~BookmarkContextMenuControllerDelegate() {} 23 virtual ~BookmarkContextMenuControllerDelegate() {}
25 24
26 // Closes the bookmark context menu. 25 // Closes the bookmark context menu.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 PageNavigator* navigator_; 92 PageNavigator* navigator_;
94 const BookmarkNode* parent_; 93 const BookmarkNode* parent_;
95 std::vector<const BookmarkNode*> selection_; 94 std::vector<const BookmarkNode*> selection_;
96 BookmarkModel* model_; 95 BookmarkModel* model_;
97 scoped_ptr<menus::SimpleMenuModel> menu_model_; 96 scoped_ptr<menus::SimpleMenuModel> menu_model_;
98 97
99 DISALLOW_COPY_AND_ASSIGN(BookmarkContextMenuController); 98 DISALLOW_COPY_AND_ASSIGN(BookmarkContextMenuController);
100 }; 99 };
101 100
102 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_H_ 101 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698