| Index: chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.h
|
| diff --git a/chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.h b/chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.h
|
| index 22f7912f7509dfa6ea91a74ea4ef956f80732a47..306f78c78eb16a53de6f0929a1b099df8aacd191 100644
|
| --- a/chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.h
|
| +++ b/chrome/browser/ui/ash/launcher/launcher_application_menu_item_model.h
|
| @@ -21,18 +21,17 @@ class LauncherApplicationMenuItemModel : public ash::ShelfMenuModel,
|
| public:
|
| explicit LauncherApplicationMenuItemModel(
|
| ChromeLauncherAppMenuItems item_list);
|
| - virtual ~LauncherApplicationMenuItemModel();
|
| + ~LauncherApplicationMenuItemModel() override;
|
|
|
| // Overridden from ash::ShelfMenuModel:
|
| - virtual bool IsCommandActive(int command_id) const override;
|
| + bool IsCommandActive(int command_id) const override;
|
|
|
| // Overridden from ui::SimpleMenuModel::Delegate:
|
| - virtual bool IsCommandIdChecked(int command_id) const override;
|
| - virtual bool IsCommandIdEnabled(int command_id) const override;
|
| - virtual bool GetAcceleratorForCommandId(
|
| - int command_id,
|
| - ui::Accelerator* accelerator) override;
|
| - virtual void ExecuteCommand(int command_id, int event_flags) override;
|
| + bool IsCommandIdChecked(int command_id) const override;
|
| + bool IsCommandIdEnabled(int command_id) const override;
|
| + bool GetAcceleratorForCommandId(int command_id,
|
| + ui::Accelerator* accelerator) override;
|
| + void ExecuteCommand(int command_id, int event_flags) override;
|
|
|
| private:
|
| void Build();
|
|
|