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

Unified Diff: chrome/browser/notifications/login_state_notification_blocker_chromeos_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/login_state_notification_blocker_chromeos_unittest.cc
diff --git a/chrome/browser/notifications/login_state_notification_blocker_chromeos_unittest.cc b/chrome/browser/notifications/login_state_notification_blocker_chromeos_unittest.cc
index 5a1f1b887ad908ec71e8f51f08342d7cebd0bfa6..a2dda1347c29f3fecc585545de0503d623ddde01 100644
--- a/chrome/browser/notifications/login_state_notification_blocker_chromeos_unittest.cc
+++ b/chrome/browser/notifications/login_state_notification_blocker_chromeos_unittest.cc
@@ -20,7 +20,7 @@ class LoginStateNotificationBlockerChromeOSTest
virtual ~LoginStateNotificationBlockerChromeOSTest() {}
// ash::tests::AshTestBase overrides:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
chromeos::LoginState::Initialize();
chromeos::LoginState::Get()->set_always_logged_in(false);
ash::test::AshTestBase::SetUp();
@@ -29,7 +29,7 @@ class LoginStateNotificationBlockerChromeOSTest
blocker_->AddObserver(this);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
blocker_->RemoveObserver(this);
blocker_.reset();
ash::test::AshTestBase::TearDown();
@@ -38,7 +38,7 @@ class LoginStateNotificationBlockerChromeOSTest
// message_center::NotificationBlocker::Observer overrides:
virtual void OnBlockingStateChanged(
- message_center::NotificationBlocker* blocker) OVERRIDE {
+ message_center::NotificationBlocker* blocker) override {
state_changed_count_++;
}

Powered by Google App Engine
This is Rietveld 408576698