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

Unified Diff: chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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
« no previous file with comments | « chrome/browser/speech/tts_win.cc ('k') | chrome/browser/sync/profile_sync_components_factory_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
diff --git a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
index bbc5a4dcf3b9cb403cf7b02fa3a332df04b62765..7301b1dfd3c1cf8abd3e3ac44565a1e7a3948a4e 100644
--- a/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
+++ b/chrome/browser/sync/glue/sync_backend_host_impl_unittest.cc
@@ -151,9 +151,9 @@ class SyncBackendHostTest : public testing::Test {
profile_manager_(TestingBrowserProcess::GetGlobal()),
fake_manager_(NULL) {}
- virtual ~SyncBackendHostTest() {}
+ ~SyncBackendHostTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
ASSERT_TRUE(profile_manager_.SetUp());
profile_ = profile_manager_.CreateTestingProfile(kTestProfileName);
sync_prefs_.reset(new sync_driver::SyncPrefs(profile_->GetPrefs()));
@@ -184,7 +184,7 @@ class SyncBackendHostTest : public testing::Test {
network_resources_.reset(new syncer::HttpBridgeNetworkResources());
}
- virtual void TearDown() override {
+ void TearDown() override {
if (backend_) {
backend_->StopSyncingForShutdown();
backend_->Shutdown(syncer::STOP_SYNC);
« no previous file with comments | « chrome/browser/speech/tts_win.cc ('k') | chrome/browser/sync/profile_sync_components_factory_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698