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