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

Unified Diff: chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unittest.cc

Issue 857433003: Update {virtual,override,final} to follow C++11 style chrome/browser/ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix rebase Created 5 years, 11 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/ash/multi_user/multi_user_notification_blocker_chromeos_unittest.cc
diff --git a/chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unittest.cc b/chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unittest.cc
index f11ab987f99a702484ad7fc1c6969e437784273c..28bed7cfe66bdab371fb6c6831ee9d54ccef4afa 100644
--- a/chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unittest.cc
+++ b/chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unittest.cc
@@ -24,10 +24,10 @@ class MultiUserNotificationBlockerChromeOSTest
: state_changed_count_(0),
testing_profile_manager_(TestingBrowserProcess::GetGlobal()),
window_id_(0) {}
- virtual ~MultiUserNotificationBlockerChromeOSTest() {}
+ ~MultiUserNotificationBlockerChromeOSTest() override {}
// ash::test::AshTestBase overrides:
- virtual void SetUp() override {
+ void SetUp() override {
ash::test::AshTestBase::SetUp();
ASSERT_TRUE(testing_profile_manager_.SetUp());
@@ -51,7 +51,7 @@ class MultiUserNotificationBlockerChromeOSTest
GetMultiUserWindowManager()->notification_blocker_->AddObserver(this);
}
- virtual void TearDown() override {
+ void TearDown() override {
GetMultiUserWindowManager()->notification_blocker_->RemoveObserver(this);
if (chrome::MultiUserWindowManager::GetInstance())
chrome::MultiUserWindowManager::DeleteInstance();
@@ -59,7 +59,7 @@ class MultiUserNotificationBlockerChromeOSTest
}
// message_center::NotificationBlocker::Observer ovverrides:
- virtual void OnBlockingStateChanged(
+ void OnBlockingStateChanged(
message_center::NotificationBlocker* blocker) override {
state_changed_count_++;
}

Powered by Google App Engine
This is Rietveld 408576698