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

Unified Diff: chrome/browser/notifications/message_center_settings_controller_unittest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/notifications/message_center_settings_controller_unittest.cc
diff --git a/chrome/browser/notifications/message_center_settings_controller_unittest.cc b/chrome/browser/notifications/message_center_settings_controller_unittest.cc
index a18177732eb25c9de15fc5200960435216bbf388..75670ee3a4bb96b2643c6854a8f90784ca21aa67 100644
--- a/chrome/browser/notifications/message_center_settings_controller_unittest.cc
+++ b/chrome/browser/notifications/message_center_settings_controller_unittest.cc
@@ -32,7 +32,7 @@ class MessageCenterSettingsControllerTest : public testing::Test {
.AppendASCII(base_name);
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ASSERT_TRUE(testing_profile_manager_.SetUp());
}
@@ -67,7 +67,7 @@ class MessageCenterSettingsControllerChromeOSTest
MessageCenterSettingsControllerChromeOSTest() {}
virtual ~MessageCenterSettingsControllerChromeOSTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
MessageCenterSettingsControllerTest::SetUp();
// Initialize the UserManager singleton to a fresh FakeUserManager instance.
@@ -75,12 +75,12 @@ class MessageCenterSettingsControllerChromeOSTest
new chromeos::ScopedUserManagerEnabler(new chromeos::FakeUserManager));
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
ResetController();
MessageCenterSettingsControllerTest::TearDown();
}
- virtual void CreateProfile(const std::string& name) OVERRIDE {
+ virtual void CreateProfile(const std::string& name) override {
MessageCenterSettingsControllerTest::CreateProfile(name);
GetFakeUserManager()->AddUser(name);

Powered by Google App Engine
This is Rietveld 408576698