| Index: chrome/browser/ui/autofill/account_chooser_model.h
|
| diff --git a/chrome/browser/ui/autofill/account_chooser_model.h b/chrome/browser/ui/autofill/account_chooser_model.h
|
| index b406660455803ef9772ca9f8bd78ba414a00bea2..6403973bc2d4d06f78b4a40027e07f4f4f9ca426 100644
|
| --- a/chrome/browser/ui/autofill/account_chooser_model.h
|
| +++ b/chrome/browser/ui/autofill/account_chooser_model.h
|
| @@ -52,15 +52,14 @@ class AccountChooserModel : public ui::SimpleMenuModel,
|
| Profile* profile,
|
| bool disable_wallet,
|
| const AutofillMetrics& metric_logger);
|
| - virtual ~AccountChooserModel();
|
| + ~AccountChooserModel() override;
|
|
|
| // ui::SimpleMenuModel::Delegate implementation.
|
| - 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;
|
|
|
| // Sets the selection to the given wallet account.
|
| void SelectWalletAccount(size_t user_index);
|
|
|