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

Side by Side Diff: chromecast/metrics/cast_metrics_service_client.h

Issue 510483004: Chromecast buildfix: MetricsService has moved to metrics namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« 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