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

Unified Diff: components/sync/engine/sync_engine.cc

Issue 2559123002: [Sync] SyncEngine refactor part 2: SyncServiceBase. (Closed)
Patch Set: Address comments. Created 4 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: components/sync/engine/sync_engine.cc
diff --git a/components/sync/engine/sync_engine.cc b/components/sync/engine/sync_engine.cc
index 53482595e3d307e3bc69797aff9ae2495b92cfa7..33beacf5a65c5111d31fc3b03f5939d3afcdb92f 100644
--- a/components/sync/engine/sync_engine.cc
+++ b/components/sync/engine/sync_engine.cc
@@ -6,7 +6,11 @@
namespace syncer {
-SyncEngine::SyncEngine() {}
-SyncEngine::~SyncEngine() {}
+SyncEngine::InitParams::InitParams() = default;
+SyncEngine::InitParams::InitParams(InitParams&& other) = default;
+SyncEngine::InitParams::~InitParams() = default;
+
+SyncEngine::SyncEngine() = default;
+SyncEngine::~SyncEngine() = default;
} // namespace syncer
« no previous file with comments | « components/sync/engine/sync_engine.h ('k') | components/sync/test/fake_server/fake_server_network_resources.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698