| Index: ui/views/examples/menu_example.cc
|
| diff --git a/ui/views/examples/menu_example.cc b/ui/views/examples/menu_example.cc
|
| index bc8845e564452b6580ac6884ffb6774168c2b345..1b95457c6705d6fd67abae971ba4883e67fc2dc7 100644
|
| --- a/ui/views/examples/menu_example.cc
|
| +++ b/ui/views/examples/menu_example.cc
|
| @@ -28,12 +28,12 @@ class ExampleMenuModel : public ui::SimpleMenuModel,
|
| ExampleMenuModel();
|
|
|
| // ui::SimpleMenuModel::Delegate:
|
| - virtual bool IsCommandIdChecked(int command_id) const OVERRIDE;
|
| - virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE;
|
| + 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;
|
| + ui::Accelerator* accelerator) override;
|
| + virtual void ExecuteCommand(int command_id, int event_flags) override;
|
|
|
| private:
|
| enum GroupID {
|
| @@ -66,7 +66,7 @@ class ExampleMenuButton : public MenuButton, public MenuButtonListener {
|
| private:
|
| // MenuButtonListener:
|
| virtual void OnMenuButtonClicked(View* source,
|
| - const gfx::Point& point) OVERRIDE;
|
| + const gfx::Point& point) override;
|
|
|
| ui::SimpleMenuModel* GetMenuModel();
|
|
|
|
|