| Index: components/data_use_measurement/core/data_use.cc
|
| diff --git a/components/data_use_measurement/core/data_use.cc b/components/data_use_measurement/core/data_use.cc
|
| index 6a8ec7fe61be08addcb8e03107551990c7a93437..c84da07f1faf1bd8eab55c7529b754583533330f 100644
|
| --- a/components/data_use_measurement/core/data_use.cc
|
| +++ b/components/data_use_measurement/core/data_use.cc
|
| @@ -8,6 +8,10 @@ namespace data_use_measurement {
|
|
|
| DataUse::DataUse() : total_bytes_sent_(0), total_bytes_received_(0) {}
|
|
|
| +DataUse::DataUse(const DataUse& other) :
|
| + total_bytes_sent_(other.total_bytes_sent_),
|
| + total_bytes_received_(other.total_bytes_received_) {}
|
| +
|
| DataUse::~DataUse() {}
|
|
|
| void DataUse::MergeFrom(const DataUse& other) {
|
|
|