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

Unified Diff: chromecast/metrics/cast_metrics_service_client.h

Issue 482813004: Adds CastMetricsServiceClient to Chromecast shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address asvitkine's comments Created 6 years, 4 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
« no previous file with comments | « chromecast/metrics/cast_metrics_prefs.cc ('k') | chromecast/metrics/cast_metrics_service_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/metrics/cast_metrics_service_client.h
diff --git a/chromecast/metrics/cast_metrics_service_client.h b/chromecast/metrics/cast_metrics_service_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..5ad791d9aa98c16365fc95eceb1c02290dfdc4a6
--- /dev/null
+++ b/chromecast/metrics/cast_metrics_service_client.h
@@ -0,0 +1,74 @@
+// Copyright 2014 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 CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_
+#define CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_
+
+#include <string>
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "components/metrics/metrics_service_client.h"
+
+class MetricsService;
+class PrefService;
+
+namespace metrics {
+class MetricsStateManager;
+} // namespace metrics
+
+namespace net {
+class URLRequestContextGetter;
+} // namespace net
+
+namespace chromecast {
+namespace metrics {
+
+class CastMetricsServiceClient : public ::metrics::MetricsServiceClient {
+ public:
+ virtual ~CastMetricsServiceClient();
+
+ static CastMetricsServiceClient* Create(
+ PrefService* pref_service,
+ net::URLRequestContextGetter* request_context);
+
+ // metrics::MetricsServiceClient implementation:
+ virtual void SetMetricsClientId(const std::string& client_id) OVERRIDE;
+ virtual bool IsOffTheRecordSessionActive() OVERRIDE;
+ virtual std::string GetApplicationLocale() OVERRIDE;
+ virtual bool GetBrand(std::string* brand_code) OVERRIDE;
+ virtual ::metrics::SystemProfileProto::Channel GetChannel() OVERRIDE;
+ virtual std::string GetVersionString() OVERRIDE;
+ virtual void OnLogUploadComplete() OVERRIDE;
+ virtual void StartGatheringMetrics(
+ const base::Closure& done_callback) OVERRIDE;
+ virtual void CollectFinalMetrics(const base::Closure& done_callback) OVERRIDE;
+ virtual scoped_ptr< ::metrics::MetricsLogUploader> CreateUploader(
+ const std::string& server_url,
+ const std::string& mime_type,
+ const base::Callback<void(int)>& on_upload_complete) OVERRIDE;
+
+ // Starts/stops the metrics service.
+ void EnableMetricsService(bool enabled);
+
+ private:
+ explicit CastMetricsServiceClient(
+ PrefService* pref_service,
+ net::URLRequestContextGetter* request_context);
+
+ // Returns whether or not metrics reporting is enabled.
+ bool IsReportingEnabled();
+
+ scoped_ptr< ::metrics::MetricsStateManager> metrics_state_manager_;
+ scoped_ptr<MetricsService> metrics_service_;
+ net::URLRequestContextGetter* request_context_;
+
+ DISALLOW_COPY_AND_ASSIGN(CastMetricsServiceClient);
+};
+
+} // namespace metrics
+} // namespace chromecast
+
+#endif // CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_
« no previous file with comments | « chromecast/metrics/cast_metrics_prefs.cc ('k') | chromecast/metrics/cast_metrics_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698