| 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_BROWSER_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ |
| 6 #define CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ | 6 #define CHROMECAST_BROWSER_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 PrefService; | 15 class PrefService; |
| 16 | 16 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 scoped_ptr< ::metrics::MetricsService> metrics_service_; | 73 scoped_ptr< ::metrics::MetricsService> metrics_service_; |
| 74 scoped_refptr<base::MessageLoopProxy> metrics_service_loop_; | 74 scoped_refptr<base::MessageLoopProxy> metrics_service_loop_; |
| 75 net::URLRequestContextGetter* request_context_; | 75 net::URLRequestContextGetter* request_context_; |
| 76 | 76 |
| 77 DISALLOW_COPY_AND_ASSIGN(CastMetricsServiceClient); | 77 DISALLOW_COPY_AND_ASSIGN(CastMetricsServiceClient); |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace metrics | 80 } // namespace metrics |
| 81 } // namespace chromecast | 81 } // namespace chromecast |
| 82 | 82 |
| 83 #endif // CHROMECAST_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ | 83 #endif // CHROMECAST_BROWSER_METRICS_CAST_METRICS_SERVICE_CLIENT_H_ |
| OLD | NEW |