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

Unified Diff: chrome/browser/sync/profile_sync_service_unittest.cc

Issue 686563003: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/sync/profile_sync_service_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_unittest.cc b/chrome/browser/sync/profile_sync_service_unittest.cc
index 0b0c3cf011d37d6ed88b0d44b2d81ff2b3fd25a8..2daf03b7dd3d732711bbc542e74f32ce74fd86bf 100644
--- a/chrome/browser/sync/profile_sync_service_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_unittest.cc
@@ -171,9 +171,9 @@ class ProfileSyncServiceTest : public ::testing::Test {
ProfileSyncServiceTest()
: thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP),
profile_manager_(TestingBrowserProcess::GetGlobal()) {}
- virtual ~ProfileSyncServiceTest() {}
+ ~ProfileSyncServiceTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
CommandLine::ForCurrentProcess()->AppendSwitchASCII(
switches::kSyncDeferredStartupTimeoutSeconds, "0");
@@ -194,7 +194,7 @@ class ProfileSyncServiceTest : public ::testing::Test {
testing_facotries);
}
- virtual void TearDown() override {
+ void TearDown() override {
// Kill the service before the profile.
if (service_)
service_->Shutdown();

Powered by Google App Engine
This is Rietveld 408576698