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

Side by Side Diff: ui/app_list/app_list_menu.h

Issue 12789010: [win] Change app launcher profile indicator to be a menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clang fail Created 7 years, 9 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
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | ui/app_list/app_list_menu.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 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 UI_APP_LIST_APP_LIST_MENU_H_
6 #define UI_APP_LIST_APP_LIST_MENU_H_
7
8 #include "ui/base/models/simple_menu_model.h"
9
10 namespace app_list {
11
12 class AppListViewDelegate;
13
14 // Menu for the app list. This is shown in the top right hand corner of the
15 // app list.
16 // TODO(benwells): We should consider moving this into Chrome.
17 class AppListMenu : public ui::SimpleMenuModel::Delegate {
18 public:
19 enum AppListMenuCommands {
20 CURRENT_USER,
21 SHOW_SETTINGS,
22 SHOW_FEEDBACK,
23 };
24
25 explicit AppListMenu(AppListViewDelegate* delegate);
26 virtual ~AppListMenu();
27
28 protected:
29 ui::SimpleMenuModel* menu_model() { return &menu_model_; }
30
31 private:
32 void InitMenu();
33
34 virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
35 virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE;
36 virtual bool GetAcceleratorForCommandId(
37 int command_id,
38 ui::Accelerator* accelerator) OVERRIDE;
39 virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
40
41 ui::SimpleMenuModel menu_model_;
42 AppListViewDelegate* delegate_;
43
44 DISALLOW_COPY_AND_ASSIGN(AppListMenu);
45 };
46
47 } // namespace app_list
48
49 #endif // UI_APP_LIST_APP_LIST_MENU_H_
OLDNEW
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | ui/app_list/app_list_menu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698