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

Unified Diff: chrome/browser/extensions/extension_action_icon_factory_unittest.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/extensions/extension_action_icon_factory_unittest.cc
diff --git a/chrome/browser/extensions/extension_action_icon_factory_unittest.cc b/chrome/browser/extensions/extension_action_icon_factory_unittest.cc
index 1bb071f0687098e81d17300a338e8b15ccbbaeb3..690d41725f9559bf57cc69ba80ebfea7b12c3a33 100644
--- a/chrome/browser/extensions/extension_action_icon_factory_unittest.cc
+++ b/chrome/browser/extensions/extension_action_icon_factory_unittest.cc
@@ -129,7 +129,7 @@ class ExtensionActionIconFactoryTest
}
// testing::Test overrides:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
file_thread_.Start();
io_thread_.Start();
profile_.reset(new TestingProfile);
@@ -139,13 +139,13 @@ class ExtensionActionIconFactoryTest
CreateExtensionService(&command_line, base::FilePath(), false);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
profile_.reset(); // Get all DeleteSoon calls sent to ui_loop_.
ui_loop_.RunUntilIdle();
}
// ExtensionActionIconFactory::Observer overrides:
- virtual void OnIconUpdated() OVERRIDE {
+ virtual void OnIconUpdated() override {
if (quit_in_icon_updated_)
base::MessageLoop::current()->Quit();
}
« no previous file with comments | « chrome/browser/extensions/extension_action_icon_factory.h ('k') | chrome/browser/extensions/extension_action_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698