Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698