OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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_UI_VIEWS_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_VIEWS
_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_VIEWS
_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_VIEWS
_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_VIEWS
_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 bool IsCommandEnabled(int id) const; | 67 bool IsCommandEnabled(int id) const; |
68 | 68 |
69 Profile* profile() const { return profile_; } | 69 Profile* profile() const { return profile_; } |
70 | 70 |
71 void set_navigator(PageNavigator* navigator) { navigator_ = navigator; } | 71 void set_navigator(PageNavigator* navigator) { navigator_ = navigator; } |
72 PageNavigator* navigator() const { return navigator_; } | 72 PageNavigator* navigator() const { return navigator_; } |
73 | 73 |
74 private: | 74 private: |
75 // Overridden from BaseBookmarkModelObserver: | 75 // Overridden from BaseBookmarkModelObserver: |
76 // Any change to the model results in closing the menu. | 76 // Any change to the model results in closing the menu. |
77 virtual void BookmarkModelChanged(); | 77 virtual void BookmarkModelChanged() OVERRIDE; |
78 | 78 |
79 // Removes the observer from the model and NULLs out model_. | 79 // Removes the observer from the model and NULLs out model_. |
80 BookmarkModel* RemoveModelObserver(); | 80 BookmarkModel* RemoveModelObserver(); |
81 | 81 |
82 // Returns true if selection_ has at least one bookmark of type url. | 82 // Returns true if selection_ has at least one bookmark of type url. |
83 bool HasURLs() const; | 83 bool HasURLs() const; |
84 | 84 |
85 views::Widget* parent_widget_; | 85 views::Widget* parent_widget_; |
86 BookmarkContextMenuControllerViewsDelegate* delegate_; | 86 BookmarkContextMenuControllerViewsDelegate* delegate_; |
87 Profile* profile_; | 87 Profile* profile_; |
88 PageNavigator* navigator_; | 88 PageNavigator* navigator_; |
89 const BookmarkNode* parent_; | 89 const BookmarkNode* parent_; |
90 std::vector<const BookmarkNode*> selection_; | 90 std::vector<const BookmarkNode*> selection_; |
91 BookmarkModel* model_; | 91 BookmarkModel* model_; |
92 | 92 |
93 DISALLOW_COPY_AND_ASSIGN(BookmarkContextMenuControllerViews); | 93 DISALLOW_COPY_AND_ASSIGN(BookmarkContextMenuControllerViews); |
94 }; | 94 }; |
95 | 95 |
96 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_VI
EWS_H_ | 96 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_CONTEXT_MENU_CONTROLLER_VI
EWS_H_ |
OLD | NEW |