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

Side by Side Diff: components/data_usage/core/data_use_amortizer.h

Issue 1390993005: Amortize data usage using TrafficStats on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@data_use_buffering
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_DATA_USAGE_CORE_DATA_USE_AMORTIZER_H_
6 #define COMPONENTS_DATA_USAGE_CORE_DATA_USE_AMORTIZER_H_
7
8 #include <stdint.h>
9
10 #include <vector>
11
12 #include "components/data_usage/core/data_use.h"
13
14 namespace data_usage {
15
16 class DataUseAmortizer {
17 public:
18 virtual ~DataUseAmortizer() {}
19
20 // Amortize the given |data_use_sequence|, modifying the elements of
21 // |data_use_sequence| directly. |extra_tx_bytes| and |extra_rx_bytes| are
22 // the byte counts for data usage that is not included in |data_use_sequence|.
23 virtual void Amortize(std::vector<DataUse>* data_use_sequence,
24 int64_t extra_tx_bytes,
25 int64_t extra_rx_bytes) = 0;
26 };
27
28 } // namespace data_usage
29
30 #endif // COMPONENTS_DATA_USAGE_CORE_DATA_USE_AMORTIZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698