OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ |
6 #define CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "ui/base/models/simple_menu_model.h" | 10 #include "ui/base/models/simple_menu_model.h" |
11 | 11 |
12 class Browser; | 12 class Browser; |
13 class MediaRouterAction; | |
14 | 13 |
15 // The class for the contextual menu for the Media Router action. | 14 // The class for the contextual menu for the Media Router action. |
16 class MediaRouterContextualMenu : public ui::SimpleMenuModel::Delegate { | 15 class MediaRouterContextualMenu : public ui::SimpleMenuModel::Delegate { |
17 public: | 16 public: |
18 MediaRouterContextualMenu(Browser* browser, MediaRouterAction* action); | 17 explicit MediaRouterContextualMenu(Browser* browser); |
19 ~MediaRouterContextualMenu() override; | 18 ~MediaRouterContextualMenu() override; |
20 | 19 |
21 ui::MenuModel* menu_model() { return &menu_model_; } | 20 ui::MenuModel* menu_model() { return &menu_model_; } |
22 | 21 |
23 private: | 22 private: |
24 #if defined(GOOGLE_CHROME_BUILD) | 23 #if defined(GOOGLE_CHROME_BUILD) |
25 FRIEND_TEST_ALL_PREFIXES(MediaRouterContextualMenuUnitTest, | 24 FRIEND_TEST_ALL_PREFIXES(MediaRouterContextualMenuUnitTest, |
26 ToggleCloudServicesItem); | 25 ToggleCloudServicesItem); |
27 #endif // GOOGLE_CHROME_BUILD | 26 #endif // GOOGLE_CHROME_BUILD |
28 | 27 |
29 // ui::SimpleMenuModel::Delegate: | 28 // ui::SimpleMenuModel::Delegate: |
30 bool IsCommandIdChecked(int command_id) const override; | 29 bool IsCommandIdChecked(int command_id) const override; |
31 bool IsCommandIdEnabled(int command_id) const override; | 30 bool IsCommandIdEnabled(int command_id) const override; |
32 bool IsCommandIdVisible(int command_id) const override; | 31 bool IsCommandIdVisible(int command_id) const override; |
33 void ExecuteCommand(int command_id, int event_flags) override; | 32 void ExecuteCommand(int command_id, int event_flags) override; |
34 | 33 |
35 void ReportIssue(); | 34 void ReportIssue(); |
| 35 void RemoveMediaRouterComponentAction(); |
36 | 36 |
37 Browser* browser_; | 37 Browser* browser_; |
38 ui::SimpleMenuModel menu_model_; | 38 ui::SimpleMenuModel menu_model_; |
39 MediaRouterAction* action_; | |
40 | 39 |
41 DISALLOW_COPY_AND_ASSIGN(MediaRouterContextualMenu); | 40 DISALLOW_COPY_AND_ASSIGN(MediaRouterContextualMenu); |
42 }; | 41 }; |
43 | 42 |
44 #endif // CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ | 43 #endif // CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ |
OLD | NEW |