| 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 b620191cd681509c094f9b3fb3b7abc6b6ffa2fa..4e872b09146fd7ca52c21ad4a9bf71e7e15c8b09 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,16 @@ class AutofillAccountChooserTest : public ui::CocoaTest {
|
|
|
| class MenuDelegate : public ui::SimpleMenuModel::Delegate {
|
| public:
|
| - virtual bool IsCommandIdChecked(int command_id) const override {
|
| - return false;
|
| - }
|
| + bool IsCommandIdChecked(int command_id) const override { return false; }
|
|
|
| - virtual bool IsCommandIdEnabled(int command_id) const override {
|
| - return true;
|
| - }
|
| + bool IsCommandIdEnabled(int command_id) const override { return true; }
|
|
|
| - virtual bool GetAcceleratorForCommandId(
|
| - int command_id,
|
| - ui::Accelerator* accelerator) override { return false; }
|
| + bool GetAcceleratorForCommandId(int command_id,
|
| + ui::Accelerator* accelerator) override {
|
| + return false;
|
| + }
|
|
|
| - virtual void ExecuteCommand(int command_id, int event_flags) override {}
|
| + void ExecuteCommand(int command_id, int event_flags) override {}
|
| };
|
|
|
| } // namespace
|
|
|