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
3 // found in the LICENSE file.
5 #include "chromecast/service/cast_service_android.h"
7 #include "base/callback.h"
8 #include "chromecast/android/chromecast_config_android.h"
10 namespace chromecast
{
13 CastService
* CastService::Create(content::BrowserContext
* browser_context
) {
14 return new CastServiceAndroid(browser_context
);
17 CastServiceAndroid::CastServiceAndroid(content::BrowserContext
* browser_context
)
18 : CastService(browser_context
) {
21 CastServiceAndroid::~CastServiceAndroid() {
24 void CastServiceAndroid::Initialize() {
25 // TODO(gunsch): Wire this the SendUsageStatsChanged callback once
26 // CastService::Delegate is added.
29 void CastServiceAndroid::StartInternal() {
32 void CastServiceAndroid::StopInternal() {
35 } // namespace chromecast