| Index: chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
|
| index 6a443b3b09095efb03602e1bbf28e1a0a6c960a6..b620191cd681509c094f9b3fb3b7abc6b6ffa2fa 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
|
| @@ -36,19 +36,19 @@ class AutofillAccountChooserTest : public ui::CocoaTest {
|
|
|
| class MenuDelegate : public ui::SimpleMenuModel::Delegate {
|
| public:
|
| - virtual bool IsCommandIdChecked(int command_id) const OVERRIDE {
|
| + virtual bool IsCommandIdChecked(int command_id) const override {
|
| return false;
|
| }
|
|
|
| - virtual bool IsCommandIdEnabled(int command_id) const OVERRIDE {
|
| + virtual bool IsCommandIdEnabled(int command_id) const override {
|
| return true;
|
| }
|
|
|
| virtual bool GetAcceleratorForCommandId(
|
| int command_id,
|
| - ui::Accelerator* accelerator) OVERRIDE { return false; }
|
| + ui::Accelerator* accelerator) override { return false; }
|
|
|
| - virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE {}
|
| + virtual void ExecuteCommand(int command_id, int event_flags) override {}
|
| };
|
|
|
| } // namespace
|
|
|