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/service/cast_service_android.h" | 5 #include "chromecast/browser/service/cast_service_android.h" |
6 | 6 |
7 #include "chromecast/android/chromecast_config_android.h" | 7 #include "chromecast/android/chromecast_config_android.h" |
8 | 8 |
9 namespace chromecast { | 9 namespace chromecast { |
10 | 10 |
11 // static | 11 // static |
12 CastService* CastService::Create( | 12 CastService* CastService::Create( |
13 content::BrowserContext* browser_context, | 13 content::BrowserContext* browser_context, |
14 net::URLRequestContextGetter* request_context_getter, | 14 net::URLRequestContextGetter* request_context_getter, |
15 const OptInStatsChangedCallback& opt_in_stats_callback) { | 15 const OptInStatsChangedCallback& opt_in_stats_callback) { |
(...skipping 14 matching lines...) Expand all Loading... |
30 SetSendUsageStatsChangedCallback(opt_in_stats_callback()); | 30 SetSendUsageStatsChangedCallback(opt_in_stats_callback()); |
31 } | 31 } |
32 | 32 |
33 void CastServiceAndroid::StartInternal() { | 33 void CastServiceAndroid::StartInternal() { |
34 } | 34 } |
35 | 35 |
36 void CastServiceAndroid::StopInternal() { | 36 void CastServiceAndroid::StopInternal() { |
37 } | 37 } |
38 | 38 |
39 } // namespace chromecast | 39 } // namespace chromecast |
OLD | NEW |