OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ | 5 #ifndef CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ |
6 #define CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ | 6 #define CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "components/metrics/metrics_service_client.h" | 13 #include "components/metrics/metrics_service_client.h" |
14 | 14 |
15 class MetricsService; | |
16 class PrefService; | 15 class PrefService; |
17 | 16 |
18 namespace metrics { | 17 namespace metrics { |
| 18 class MetricsService; |
19 class MetricsStateManager; | 19 class MetricsStateManager; |
20 } // namespace metrics | 20 } // namespace metrics |
21 | 21 |
22 namespace net { | 22 namespace net { |
23 class URLRequestContextGetter; | 23 class URLRequestContextGetter; |
24 } // namespace net | 24 } // namespace net |
25 | 25 |
26 namespace chromecast { | 26 namespace chromecast { |
27 namespace metrics { | 27 namespace metrics { |
28 | 28 |
(...skipping 26 matching lines...) Expand all Loading... |
55 | 55 |
56 private: | 56 private: |
57 explicit CastMetricsServiceClient( | 57 explicit CastMetricsServiceClient( |
58 PrefService* pref_service, | 58 PrefService* pref_service, |
59 net::URLRequestContextGetter* request_context); | 59 net::URLRequestContextGetter* request_context); |
60 | 60 |
61 // Returns whether or not metrics reporting is enabled. | 61 // Returns whether or not metrics reporting is enabled. |
62 bool IsReportingEnabled(); | 62 bool IsReportingEnabled(); |
63 | 63 |
64 scoped_ptr< ::metrics::MetricsStateManager> metrics_state_manager_; | 64 scoped_ptr< ::metrics::MetricsStateManager> metrics_state_manager_; |
65 scoped_ptr<MetricsService> metrics_service_; | 65 scoped_ptr< ::metrics::MetricsService> metrics_service_; |
66 net::URLRequestContextGetter* request_context_; | 66 net::URLRequestContextGetter* request_context_; |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(CastMetricsServiceClient); | 68 DISALLOW_COPY_AND_ASSIGN(CastMetricsServiceClient); |
69 }; | 69 }; |
70 | 70 |
71 } // namespace metrics | 71 } // namespace metrics |
72 } // namespace chromecast | 72 } // namespace chromecast |
73 | 73 |
74 #endif // CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ | 74 #endif // CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ |
OLD | NEW |