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

Unified Diff: sync/internal_api/sync_manager_impl_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
Index: sync/internal_api/sync_manager_impl_unittest.cc
diff --git a/sync/internal_api/sync_manager_impl_unittest.cc b/sync/internal_api/sync_manager_impl_unittest.cc
index 0f58bb93ecea86c94bc9f28c0975f6fce7727d12..ac5b31aeb36693cdc5d77e132248995ee92e9626 100644
--- a/sync/internal_api/sync_manager_impl_unittest.cc
+++ b/sync/internal_api/sync_manager_impl_unittest.cc
@@ -199,13 +199,9 @@ int64 MakeServerNode(UserShare* share, ModelType model_type,
class SyncApiTest : public testing::Test {
public:
- virtual void SetUp() {
- test_user_share_.SetUp();
- }
+ void SetUp() override { test_user_share_.SetUp(); }
- virtual void TearDown() {
- test_user_share_.TearDown();
- }
+ void TearDown() override { test_user_share_.TearDown(); }
protected:
// Create an entry with the given |model_type|, |client_tag| and
« no previous file with comments | « sync/internal_api/sync_context_proxy_impl_unittest.cc ('k') | sync/internal_api/sync_rollback_manager_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698