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

Side by Side Diff: chrome/browser/ui/toolbar/media_router_contextual_menu.h

Issue 2201423003: [Reland] [Media Router Contextual Menu] Test 'checked' state of cloud services item. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add friend test. Created 4 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
« no previous file with comments | « no previous file | chrome/browser/ui/toolbar/media_router_contextual_menu_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 13
14 // The class for the contextual menu for the Media Router action. 14 // The class for the contextual menu for the Media Router action.
15 class MediaRouterContextualMenu : public ui::SimpleMenuModel::Delegate { 15 class MediaRouterContextualMenu : public ui::SimpleMenuModel::Delegate {
16 public: 16 public:
17 explicit MediaRouterContextualMenu(Browser* browser); 17 explicit MediaRouterContextualMenu(Browser* browser);
18 ~MediaRouterContextualMenu() override; 18 ~MediaRouterContextualMenu() override;
19 19
20 ui::MenuModel* menu_model() { return &menu_model_; } 20 ui::MenuModel* menu_model() { return &menu_model_; }
21 21
22 private: 22 private:
23 #if defined(GOOGLE_CHROME_BUILD)
24 FRIEND_TEST_ALL_PREFIXES(MediaRouterContextualMenuUnitTest,
msw 2016/08/08 18:07:11 nit: I'd rather see a static cast to a ui::SimpleM
apacible 2016/08/09 06:21:39 Thanks. We've been using friend tests for other Me
25 ToggleCloudServicesItem);
26 #endif // GOOGLE_CHROME_BUILD
27
23 // ui::SimpleMenuModel::Delegate: 28 // ui::SimpleMenuModel::Delegate:
24 bool IsCommandIdChecked(int command_id) const override; 29 bool IsCommandIdChecked(int command_id) const override;
25 bool IsCommandIdEnabled(int command_id) const override; 30 bool IsCommandIdEnabled(int command_id) const override;
26 bool IsCommandIdVisible(int command_id) const override; 31 bool IsCommandIdVisible(int command_id) const override;
27 void ExecuteCommand(int command_id, int event_flags) override; 32 void ExecuteCommand(int command_id, int event_flags) override;
28 33
29 void ReportIssue(); 34 void ReportIssue();
30 void RemoveMediaRouterComponentAction(); 35 void RemoveMediaRouterComponentAction();
31 36
32 Browser* browser_; 37 Browser* browser_;
33 ui::SimpleMenuModel menu_model_; 38 ui::SimpleMenuModel menu_model_;
34 39
35 DISALLOW_COPY_AND_ASSIGN(MediaRouterContextualMenu); 40 DISALLOW_COPY_AND_ASSIGN(MediaRouterContextualMenu);
36 }; 41 };
37 42
38 #endif // CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_ 43 #endif // CHROME_BROWSER_UI_TOOLBAR_MEDIA_ROUTER_CONTEXTUAL_MENU_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/toolbar/media_router_contextual_menu_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698