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

Unified Diff: components/data_use_measurement/content/data_use_measurement.h

Issue 1279543002: Support needed to measure user and service traffic in Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NewHistogram
Patch Set: Improving the naming of source_sets in gn files. Created 5 years, 3 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_use_measurement/content/data_use_measurement.h
diff --git a/components/data_use_measurement/content/data_use_measurement.h b/components/data_use_measurement/content/data_use_measurement.h
new file mode 100644
index 0000000000000000000000000000000000000000..12a422cec6e7abca7540865d7b7b5ba97e43dce0
--- /dev/null
+++ b/components/data_use_measurement/content/data_use_measurement.h
@@ -0,0 +1,108 @@
+// 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_USE_MEASUREMENT_CONTENT_DATA_USE_MEASUREMENT_H_
+#define COMPONENTS_DATA_USE_MEASUREMENT_CONTENT_DATA_USE_MEASUREMENT_H_
+
+#include <stdint.h>
+
+#include <string>
+
+#include "base/memory/scoped_ptr.h"
+#include "build/build_config.h"
+#include "components/data_use_measurement/core/data_use_user_data.h"
+
+#if defined(OS_ANDROID)
+#include "base/android/application_status_listener.h"
+#endif
+
+namespace net {
+class URLRequest;
+}
+
+namespace data_use_measurement {
+
+// Records the data use of user traffic and various services in UMA histograms.
+// The UMA is broken down by network technology used (Wi-Fi vs cellular). On
+// Android, the UMA is further broken down by whether the application was in the
+// background or foreground during the request.
+// TODO(amohammadkhan): Complete the layered architecture.
+// http://crbug.com/527460
+class DataUseMeasurement {
+ public:
+ DataUseMeasurement();
+ ~DataUseMeasurement();
+
+ // Records the data use of the |request|, thus |request| must be non-null.
+ void ReportDataUseUMA(const net::URLRequest* request);
+
+#if defined(OS_ANDROID)
+ // This function should just be used for testing purposes. A change in
+ // application state can be simulated by calling this function.
+ void OnApplicationStateChangeForTesting(
+ base::android::ApplicationState application_state);
+#endif
+
+ private:
+ // Specifies that data is received or sent, respectively.
+ enum TrafficDirection { DOWNSTREAM, UPSTREAM };
+
+ // The state of the application. Only available on Android and on other
+ // platforms it is always FOREGROUND.
+ enum AppState { BACKGROUND, FOREGROUND };
+
+ // The request is from a user or from a service.
+ enum RequestInitiator { REQUEST_INITIATOR_USER, REQUEST_INITIATOR_SERVICE };
+
+ // Returns the current application state (Foreground or Background). It always
+ // returns Foreground if Chrome is not running on Android.
+ AppState CurrentAppState();
+
+ // Produces a string representing whether the data use was on the send
+ // ("Upstream") or receive ("Downstream") path, whether the app was in the
+ // "Foreground" or "Background", and whether a "Cellular" or "WiFi" network
+ // was use. For example, "Upstream.Foreground.Cellular" is a possible output.
+ const std::string GetSuffixForHistogramName(TrafficDirection dir);
+
+#if defined(OS_ANDROID)
+ // Called whenever the application transitions from foreground to background
+ // and vice versa.
+ void OnApplicationStateChange(
+ base::android::ApplicationState application_state);
+#endif
+
+ // A helper function used to record data use of services. It gets the size of
+ // exchanged message, its direction (which is upstream or downstream) and
+ // reports to two histogram groups. DataUse.MessageSize.ServiceName and
+ // DataUse.Services.{Dimensions}. In the second one, services are buckets.
+ void ReportDataUsageServices(
+ data_use_measurement::DataUseUserData::ServiceType service,
+ TrafficDirection dir,
+ int64_t message_size);
+
+ // A helper function used for reporting data use of user and all the services
+ // as a single group. Two histogram groups are updated by this function. The
+ // first one is DataUse.TrafficSize.User.{Dimensions} and the second one is
+ // DataUse.TrafficSize.System.{Dimensions}. Based on |service_type| one of
+ // these groups is selected and updated.
+ void ReportDataUsageGeneral(RequestInitiator service_type,
+ TrafficDirection dir,
+ int64_t message_size);
+
+#if defined(OS_ANDROID)
+ // Application listener store the last known state of the application in this
+ // field.
+ base::android::ApplicationState app_state_;
+
+ // ApplicationStatusListener used to monitor whether the application is in the
+ // foreground or in the background. It is owned by DataUseMeasurement
mmenke 2015/09/04 20:51:46 nit: +period
amohammadkhan 2015/09/05 00:58:02 Done.
+ scoped_ptr<base::android::ApplicationStatusListener> app_listener_;
+#endif
+
+ DISALLOW_COPY_AND_ASSIGN(DataUseMeasurement);
+};
+
+} // namespace data_use_measurement
+
+#endif // COMPONENTS_DATA_USE_MEASUREMENT_CONTENT_DATA_USE_MEASUREMENT_H_

Powered by Google App Engine
This is Rietveld 408576698