| 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.
|
|
|