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

Unified Diff: chrome/browser/supervised_user/supervised_user_settings_service_unittest.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (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/supervised_user/supervised_user_settings_service_unittest.cc
diff --git a/chrome/browser/supervised_user/supervised_user_settings_service_unittest.cc b/chrome/browser/supervised_user/supervised_user_settings_service_unittest.cc
index f2f2f07dafae7a5d8a2322886b1d80d11b7de767..d519f6ce80a339a46313e08431234e462610b454 100644
--- a/chrome/browser/supervised_user/supervised_user_settings_service_unittest.cc
+++ b/chrome/browser/supervised_user/supervised_user_settings_service_unittest.cc
@@ -25,7 +25,7 @@ class MockSyncErrorFactory : public syncer::SyncErrorFactory {
// SyncErrorFactory implementation:
virtual syncer::SyncError CreateAndUploadError(
const tracked_objects::Location& location,
- const std::string& message) OVERRIDE;
+ const std::string& message) override;
private:
syncer::ModelType type_;
@@ -119,7 +119,7 @@ class SupervisedUserSettingsServiceTest : public ::testing::Test {
}
// testing::Test overrides:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
TestingPrefStore* pref_store = new TestingPrefStore;
settings_service_.Init(pref_store);
settings_service_.Subscribe(
@@ -131,7 +131,7 @@ class SupervisedUserSettingsServiceTest : public ::testing::Test {
ASSERT_TRUE(settings_);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
settings_service_.Shutdown();
}

Powered by Google App Engine
This is Rietveld 408576698