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

Unified Diff: sync/engine/get_updates_processor_unittest.cc

Issue 792343004: Standardize usage of virtual/override/final specifiers in sync/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « sync/engine/entity_tracker_unittest.cc ('k') | sync/engine/model_type_sync_proxy_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/get_updates_processor_unittest.cc
diff --git a/sync/engine/get_updates_processor_unittest.cc b/sync/engine/get_updates_processor_unittest.cc
index c146c56baf83a5e082d5136d5eb6a5749c569dc8..566a295c92d39df12804d0b89c070a40d044165a 100644
--- a/sync/engine/get_updates_processor_unittest.cc
+++ b/sync/engine/get_updates_processor_unittest.cc
@@ -40,7 +40,7 @@ class GetUpdatesProcessorTest : public ::testing::Test {
kTestStartTime(base::TimeTicks::Now()),
update_handler_deleter_(&update_handler_map_) {}
- virtual void SetUp() {
+ void SetUp() override {
AddUpdateHandler(AUTOFILL);
AddUpdateHandler(BOOKMARKS);
AddUpdateHandler(PREFERENCES);
@@ -386,9 +386,9 @@ TEST_F(GetUpdatesProcessorTest, NormalResponseTest) {
class GetUpdatesProcessorApplyUpdatesTest : public GetUpdatesProcessorTest {
public:
GetUpdatesProcessorApplyUpdatesTest() {}
- virtual ~GetUpdatesProcessorApplyUpdatesTest() {}
+ ~GetUpdatesProcessorApplyUpdatesTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
bookmarks_handler_ = AddUpdateHandler(BOOKMARKS);
autofill_handler_ = AddUpdateHandler(AUTOFILL);
}
@@ -475,7 +475,7 @@ TEST_F(GetUpdatesProcessorApplyUpdatesTest, Poll) {
class DownloadUpdatesDebugInfoTest : public ::testing::Test {
public:
DownloadUpdatesDebugInfoTest() {}
- virtual ~DownloadUpdatesDebugInfoTest() {}
+ ~DownloadUpdatesDebugInfoTest() override {}
sessions::StatusController* status() {
return &status_;
« no previous file with comments | « sync/engine/entity_tracker_unittest.cc ('k') | sync/engine/model_type_sync_proxy_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698