| 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 #include "chromecast/browser/service/cast_service_android.h" | 5 #include "chromecast/browser/service/cast_service_android.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "chromecast/android/chromecast_config_android.h" | 8 #include "chromecast/base/chromecast_config_android.h" |
| 9 #include "chromecast/browser/metrics/cast_metrics_service_client.h" | 9 #include "chromecast/browser/metrics/cast_metrics_service_client.h" |
| 10 | 10 |
| 11 namespace chromecast { | 11 namespace chromecast { |
| 12 | 12 |
| 13 // static | 13 // static |
| 14 scoped_ptr<CastService> CastService::Create( | 14 scoped_ptr<CastService> CastService::Create( |
| 15 content::BrowserContext* browser_context, | 15 content::BrowserContext* browser_context, |
| 16 PrefService* pref_service, | 16 PrefService* pref_service, |
| 17 metrics::CastMetricsServiceClient* metrics_service_client, | 17 metrics::CastMetricsServiceClient* metrics_service_client, |
| 18 net::URLRequestContextGetter* request_context_getter) { | 18 net::URLRequestContextGetter* request_context_getter) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 44 SetSendUsageStatsChangedCallback(base::Callback<void(bool)>()); | 44 SetSendUsageStatsChangedCallback(base::Callback<void(bool)>()); |
| 45 } | 45 } |
| 46 | 46 |
| 47 void CastServiceAndroid::StartInternal() { | 47 void CastServiceAndroid::StartInternal() { |
| 48 } | 48 } |
| 49 | 49 |
| 50 void CastServiceAndroid::StopInternal() { | 50 void CastServiceAndroid::StopInternal() { |
| 51 } | 51 } |
| 52 | 52 |
| 53 } // namespace chromecast | 53 } // namespace chromecast |
| OLD | NEW |