| 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
|
| index 24751bb39d9ffce0818abae9784c82c68a579d8e..fc55aea882f03cba3720336ed98c47b9737dc7c6 100644
|
| --- a/chromecast/metrics/cast_metrics_service_client.h
|
| +++ b/chromecast/metrics/cast_metrics_service_client.h
|
| @@ -14,6 +14,10 @@
|
|
|
| class PrefService;
|
|
|
| +namespace base {
|
| +class TaskRunner;
|
| +}
|
| +
|
| namespace metrics {
|
| class MetricsService;
|
| class MetricsStateManager;
|
| @@ -31,6 +35,7 @@ class CastMetricsServiceClient : public ::metrics::MetricsServiceClient {
|
| virtual ~CastMetricsServiceClient();
|
|
|
| static CastMetricsServiceClient* Create(
|
| + base::TaskRunner* io_task_runner,
|
| PrefService* pref_service,
|
| net::URLRequestContextGetter* request_context);
|
|
|
| @@ -55,6 +60,7 @@ class CastMetricsServiceClient : public ::metrics::MetricsServiceClient {
|
|
|
| private:
|
| CastMetricsServiceClient(
|
| + base::TaskRunner* io_task_runner,
|
| PrefService* pref_service,
|
| net::URLRequestContextGetter* request_context);
|
|
|
|
|