// 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_BROWSER_SERVICE_CAST_SERVICE_SIMPLE_H_ #define CHROMECAST_BROWSER_SERVICE_CAST_SERVICE_SIMPLE_H_ #include "base/macros.h" #include "base/memory/scoped_ptr.h" #include "chromecast/service/cast_service.h" #include "url/gurl.h" namespace content { class WebContents; } namespace chromecast { namespace shell { class CastContentWindow; class CastServiceSimple : public CastService { public: CastServiceSimple(content::BrowserContext* browser_context, PrefService* pref_service); ~CastServiceSimple() override; protected: // CastService implementation: void InitializeInternal() override; void FinalizeInternal() override; void StartInternal() override; void StopInternal() override; private: scoped_ptr window_; scoped_ptr web_contents_; GURL startup_url_; DISALLOW_COPY_AND_ASSIGN(CastServiceSimple); }; } // namespace shell } // namespace chromecast #endif // CHROMECAST_BROWSER_SERVICE_CAST_SERVICE_SIMPLE_H_