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

Side by Side Diff: chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.h

Issue 2140963002: Added default implementations of GetAcceleratorForCommandId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@acceleratorprovider-const
Patch Set: Rebase. Created 4 years, 5 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_ASH_LAUNCHER_LAUNCHER_APPLICATION_MENU_ITEM_MODEL_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_APPLICATION_MENU_ITEM_MODEL_H_
6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_APPLICATION_MENU_ITEM_MODEL_H_ 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_APPLICATION_MENU_ITEM_MODEL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/common/shelf/shelf_menu_model.h" 10 #include "ash/common/shelf/shelf_menu_model.h"
(...skipping 14 matching lines...) Expand all
25 explicit LauncherApplicationMenuItemModel( 25 explicit LauncherApplicationMenuItemModel(
26 ChromeLauncherAppMenuItems item_list); 26 ChromeLauncherAppMenuItems item_list);
27 ~LauncherApplicationMenuItemModel() override; 27 ~LauncherApplicationMenuItemModel() override;
28 28
29 // Overridden from ash::ShelfMenuModel: 29 // Overridden from ash::ShelfMenuModel:
30 bool IsCommandActive(int command_id) const override; 30 bool IsCommandActive(int command_id) const override;
31 31
32 // Overridden from ui::SimpleMenuModel::Delegate: 32 // Overridden from ui::SimpleMenuModel::Delegate:
33 bool IsCommandIdChecked(int command_id) const override; 33 bool IsCommandIdChecked(int command_id) const override;
34 bool IsCommandIdEnabled(int command_id) const override; 34 bool IsCommandIdEnabled(int command_id) const override;
35 bool GetAcceleratorForCommandId(int command_id,
36 ui::Accelerator* accelerator) const override;
37 void ExecuteCommand(int command_id, int event_flags) override; 35 void ExecuteCommand(int command_id, int event_flags) override;
38 36
39 private: 37 private:
40 friend class LauncherApplicationMenuItemModelTestAPI; 38 friend class LauncherApplicationMenuItemModelTestAPI;
41 39
42 void Build(); 40 void Build();
43 41
44 // Returns the number of menu items that are enabled. 42 // Returns the number of menu items that are enabled.
45 int GetNumMenuItemsEnabled() const; 43 int GetNumMenuItemsEnabled() const;
46 44
47 // Records UMA metrics when a menu item is selected. 45 // Records UMA metrics when a menu item is selected.
48 void RecordMenuItemSelectedMetrics(int command_id, 46 void RecordMenuItemSelectedMetrics(int command_id,
49 int num_menu_items_enabled); 47 int num_menu_items_enabled);
50 48
51 // The list of menu items as returned from the launcher controller. 49 // The list of menu items as returned from the launcher controller.
52 ChromeLauncherAppMenuItems launcher_items_; 50 ChromeLauncherAppMenuItems launcher_items_;
53 51
54 DISALLOW_COPY_AND_ASSIGN(LauncherApplicationMenuItemModel); 52 DISALLOW_COPY_AND_ASSIGN(LauncherApplicationMenuItemModel);
55 }; 53 };
56 54
57 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_APPLICATION_MENU_ITEM_MODEL_H _ 55 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_APPLICATION_MENU_ITEM_MODEL_H _
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/app_context_menu.cc ('k') | chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698