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

Unified Diff: chrome/browser/sync/profile_sync_service_autofill_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_autofill_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
index b02a7f3e09ffeeeb58898e22eabc4479f00531d4..4f4e9ba1badc7707268bc45c631a4596aacbddc2 100644
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
@@ -447,8 +447,7 @@ class ProfileSyncServiceAutofillTest
: profile_manager_(TestingBrowserProcess::GetGlobal()),
debug_ptr_factory_(this) {
}
- virtual ~ProfileSyncServiceAutofillTest() {
- }
+ ~ProfileSyncServiceAutofillTest() override {}
AutofillProfileFactory profile_factory_;
AutofillEntryFactory entry_factory_;
@@ -464,7 +463,7 @@ class ProfileSyncServiceAutofillTest
}
}
- virtual void SetUp() override {
+ void SetUp() override {
AbstractProfileSyncServiceTest::SetUp();
ASSERT_TRUE(profile_manager_.SetUp());
TestingProfile::TestingFactories testing_factories;
@@ -510,7 +509,7 @@ class ProfileSyncServiceAutofillTest
.WillRepeatedly(Return(true));
}
- virtual void TearDown() override {
+ void TearDown() override {
// Note: The tear down order is important.
ProfileSyncServiceFactory::GetInstance()->SetTestingFactory(profile_, NULL);
web_data_service_->ShutdownOnUIThread();

Powered by Google App Engine
This is Rietveld 408576698