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.
4
5#include "chromecast/service/cast_service_android.h"
6
7#include "chromecast/android/chromecast_config_android.h"
8
9namespace chromecast {
10
11// static
12CastService* CastService::Create(
13    content::BrowserContext* browser_context,
14    net::URLRequestContextGetter* request_context_getter) {
15  return new CastServiceAndroid(browser_context);
16}
17
18CastServiceAndroid::CastServiceAndroid(content::BrowserContext* browser_context)
19    : CastService(browser_context) {
20}
21
22CastServiceAndroid::~CastServiceAndroid() {
23}
24
25void CastServiceAndroid::Initialize() {
26  // TODO(gunsch): Wire this the SendUsageStatsChanged callback once
27  // CastService::Delegate is added.
28}
29
30void CastServiceAndroid::StartInternal() {
31}
32
33void CastServiceAndroid::StopInternal() {
34}
35
36}  // namespace chromecast
37