| Index: chromecast/service/cast_service_android.h | 
| diff --git a/chromecast/service/cast_service_android.h b/chromecast/service/cast_service_android.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..234b0129478b022b6abe3601b9bb86094b03e7b5 | 
| --- /dev/null | 
| +++ b/chromecast/service/cast_service_android.h | 
| @@ -0,0 +1,30 @@ | 
| +// Copyright 2014 The Chromium Authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#ifndef CHROMECAST_SERVICE_CAST_SERVICE_ANDROID_H_ | 
| +#define CHROMECAST_SERVICE_CAST_SERVICE_ANDROID_H_ | 
| + | 
| +#include "base/macros.h" | 
| +#include "chromecast/service/cast_service.h" | 
| + | 
| +namespace chromecast { | 
| + | 
| +class CastServiceAndroid : public CastService { | 
| + public: | 
| +  explicit CastServiceAndroid(content::BrowserContext* browser_context); | 
| +  virtual ~CastServiceAndroid(); | 
| + | 
| + protected: | 
| +  // CastService implementation. | 
| +  virtual void Initialize() OVERRIDE; | 
| +  virtual void StartInternal() OVERRIDE; | 
| +  virtual void StopInternal() OVERRIDE; | 
| + | 
| + private: | 
| +  DISALLOW_COPY_AND_ASSIGN(CastServiceAndroid); | 
| +}; | 
| + | 
| +}  // namespace chromecast | 
| + | 
| +#endif  // CHROMECAST_SERVICE_CAST_SERVICE_ANDROID_H_ | 
|  |