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

Unified Diff: components/update_client/update_client.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/update_client/update_client.cc
diff --git a/components/update_client/update_client.cc b/components/update_client/update_client.cc
index ece7cedc909ed70df275f59e1c0ec959ce445532..86b3dfc7cfe55e5ddc6dca148e456ff73dff898c 100644
--- a/components/update_client/update_client.cc
+++ b/components/update_client/update_client.cc
@@ -47,12 +47,16 @@ CrxUpdateItem::CrxUpdateItem()
diff_extra_code1(0) {
}
+CrxUpdateItem::CrxUpdateItem(const CrxUpdateItem& other) = default;
+
CrxUpdateItem::~CrxUpdateItem() {
}
CrxComponent::CrxComponent() : allow_background_download(true) {
}
+CrxComponent::CrxComponent(const CrxComponent& other) = default;
+
CrxComponent::~CrxComponent() {
}

Powered by Google App Engine
This is Rietveld 408576698