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

Side by Side Diff: components/data_use_measurement/core/data_use.cc

Issue 2534023002: Create a DataUseRecorder instance for each page load in Chrome. (Closed)
Patch Set: Use emplace to insert; remove copy constructor Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/data_use_measurement/core/data_use.h" 5 #include "components/data_use_measurement/core/data_use.h"
6 6
7 namespace data_use_measurement { 7 namespace data_use_measurement {
8 8
9 DataUse::DataUse() : total_bytes_sent_(0), total_bytes_received_(0) {} 9 DataUse::DataUse() : total_bytes_sent_(0), total_bytes_received_(0) {}
10 10
11 DataUse::DataUse(const DataUse& other) :
12 total_bytes_sent_(other.total_bytes_sent_),
13 total_bytes_received_(other.total_bytes_received_) {}
14
11 DataUse::~DataUse() {} 15 DataUse::~DataUse() {}
12 16
13 void DataUse::MergeFrom(const DataUse& other) { 17 void DataUse::MergeFrom(const DataUse& other) {
14 total_bytes_sent_ += other.total_bytes_sent_; 18 total_bytes_sent_ += other.total_bytes_sent_;
15 total_bytes_received_ += other.total_bytes_received_; 19 total_bytes_received_ += other.total_bytes_received_;
16 } 20 }
17 21
18 } // namespace data_use_measurement 22 } // namespace data_use_measurement
OLDNEW
« no previous file with comments | « components/data_use_measurement/core/data_use.h ('k') | components/data_use_measurement/core/data_use_ascriber.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698