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

Unified Diff: chrome/browser/notifications/login_state_notification_blocker_chromeos_browsertest.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_browsertest.cc
diff --git a/chrome/browser/notifications/login_state_notification_blocker_chromeos_browsertest.cc b/chrome/browser/notifications/login_state_notification_blocker_chromeos_browsertest.cc
index 2f83bc1b36efeb6256e1bb29929eeb2c83f69091..a8491ccf4486690118e5f050dd6475fee3df4f4a 100644
--- a/chrome/browser/notifications/login_state_notification_blocker_chromeos_browsertest.cc
+++ b/chrome/browser/notifications/login_state_notification_blocker_chromeos_browsertest.cc
@@ -30,12 +30,12 @@ class LoginStateNotificationBlockerChromeOSBrowserTest
state_changed_count_(0) {}
virtual ~LoginStateNotificationBlockerChromeOSBrowserTest() {}
- virtual void SetUpOnMainThread() OVERRIDE {
+ virtual void SetUpOnMainThread() override {
chromeos::LoginState::Get()->set_always_logged_in(false);
chromeos::LoginManagerTest::SetUpOnMainThread();
}
- virtual void TearDownOnMainThread() OVERRIDE {
+ virtual void TearDownOnMainThread() override {
if (blocker_)
blocker_->RemoveObserver(this);
blocker_.reset();
@@ -51,7 +51,7 @@ class LoginStateNotificationBlockerChromeOSBrowserTest
// message_center::NotificationBlocker::Observer ovverrides:
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