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

Unified Diff: components/update_client/update_response.h

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.h
diff --git a/components/update_client/update_response.h b/components/update_client/update_response.h
index 8341d280f5890fa2972e4156bf5358142fdf9891..6d93d263b4a8e212474edf2b430d4e1fe08f2aaf 100644
--- a/components/update_client/update_response.h
+++ b/components/update_client/update_response.h
@@ -62,6 +62,7 @@ class UpdateResponse {
struct Manifest {
struct Package {
Package();
+ Package(const Package& other);
~Package();
std::string fingerprint;
@@ -78,6 +79,7 @@ class UpdateResponse {
};
Manifest();
+ Manifest(const Manifest& other);
~Manifest();
std::string version;
@@ -86,6 +88,7 @@ class UpdateResponse {
};
Result();
+ Result(const Result& other);
~Result();
std::string extension_id;
@@ -101,6 +104,7 @@ class UpdateResponse {
static const int kNoDaystart = -1;
struct Results {
Results();
+ Results(const Results& other);
~Results();
// This will be >= 0, or kNoDaystart if the <daystart> tag was not present.

Powered by Google App Engine
This is Rietveld 408576698