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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/data_usage/core/data_use_amortizer.h
diff --git a/components/data_usage/core/data_use_amortizer.h b/components/data_usage/core/data_use_amortizer.h
new file mode 100644
index 0000000000000000000000000000000000000000..1a392b8b6d504783ae7179f8296031bede2061dd
--- /dev/null
+++ b/components/data_usage/core/data_use_amortizer.h
@@ -0,0 +1,30 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_DATA_USAGE_CORE_DATA_USE_AMORTIZER_H_
+#define COMPONENTS_DATA_USAGE_CORE_DATA_USE_AMORTIZER_H_
+
+#include <stdint.h>
+
+#include <vector>
+
+#include "components/data_usage/core/data_use.h"
+
+namespace data_usage {
+
+class DataUseAmortizer {
+ public:
+ virtual ~DataUseAmortizer() {}
+
+ // Amortize the given |data_use_sequence|, modifying the elements of
+ // |data_use_sequence| directly. |extra_tx_bytes| and |extra_rx_bytes| are
+ // the byte counts for data usage that is not included in |data_use_sequence|.
+ virtual void Amortize(std::vector<DataUse>* data_use_sequence,
+ int64_t extra_tx_bytes,
+ int64_t extra_rx_bytes) = 0;
+};
+
+} // namespace data_usage
+
+#endif // COMPONENTS_DATA_USAGE_CORE_DATA_USE_AMORTIZER_H_

Powered by Google App Engine
This is Rietveld 408576698