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

Unified Diff: components/sync_driver/data_type_manager.cc

Issue 1728033002: components: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: components/sync_driver/data_type_manager.cc
diff --git a/components/sync_driver/data_type_manager.cc b/components/sync_driver/data_type_manager.cc
index 99dc70ae5edd64c2e0ff7ca114ec918e26168725..1288b2379382d0f684b3e6c7804405a4b91ad38f 100644
--- a/components/sync_driver/data_type_manager.cc
+++ b/components/sync_driver/data_type_manager.cc
@@ -16,6 +16,9 @@ DataTypeManager::ConfigureResult::ConfigureResult(
: status(status), requested_types(requested_types) {
}
+DataTypeManager::ConfigureResult::ConfigureResult(
+ const ConfigureResult& other) = default;
+
DataTypeManager::ConfigureResult::~ConfigureResult() {
}

Powered by Google App Engine
This is Rietveld 408576698