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

Unified Diff: components/update_client/update_response.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_response.cc
diff --git a/components/update_client/update_response.cc b/components/update_client/update_response.cc
index cbdaee8f215027d4939d97e58bd25a2645a24762..bdf77f822a5c493264737cacaa79497c25804e14 100644
--- a/components/update_client/update_response.cc
+++ b/components/update_client/update_response.cc
@@ -28,22 +28,26 @@ UpdateResponse::~UpdateResponse() {
UpdateResponse::Results::Results() : daystart_elapsed_seconds(kNoDaystart) {
}
+UpdateResponse::Results::Results(const Results& other) = default;
UpdateResponse::Results::~Results() {
}
UpdateResponse::Result::Result() {
}
-
+UpdateResponse::Result::Result(const Result& other) = default;
UpdateResponse::Result::~Result() {
}
UpdateResponse::Result::Manifest::Manifest() {
}
+UpdateResponse::Result::Manifest::Manifest(const Manifest& other) = default;
UpdateResponse::Result::Manifest::~Manifest() {
}
UpdateResponse::Result::Manifest::Package::Package() : size(0), sizediff(0) {
}
+UpdateResponse::Result::Manifest::Package::Package(const Package& other) =
+ default;
UpdateResponse::Result::Manifest::Package::~Package() {
}

Powered by Google App Engine
This is Rietveld 408576698