Chromium Code Reviews| 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..8118ef173b65cc1133fb65b48eb7663e479daf39 |
| --- /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: |
| + CastServiceAndroid(content::BrowserContext* browser_context); |
|
lcwu1
2014/08/27 02:33:02
Add 'explicit'.
gunsch
2014/08/28 00:12:08
Done.
|
| + 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_ |