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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_params.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/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
index 48aae0ffc40e7eb08a07628b58351814ff8cc38d..05ee6890c7de2a9bbe32f348351d2ff02391bf13 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
@@ -307,6 +307,9 @@ DataReductionProxyTypeInfo::DataReductionProxyTypeInfo()
: is_fallback(false), is_ssl(false) {
}
+DataReductionProxyTypeInfo::DataReductionProxyTypeInfo(
+ const DataReductionProxyTypeInfo& other) = default;
+
DataReductionProxyTypeInfo::~DataReductionProxyTypeInfo(){
}

Powered by Google App Engine
This is Rietveld 408576698