blob: ba5b9ea0824176deb6293c9c9afc88fda25aa467 [file] [log] [blame]
// 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/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<CastContentWindow> window_;
scoped_ptr<content::WebContents> web_contents_;
GURL startup_url_;
DISALLOW_COPY_AND_ASSIGN(CastServiceSimple);
};
} // namespace shell
} // namespace chromecast
#endif // CHROMECAST_BROWSER_SERVICE_CAST_SERVICE_SIMPLE_H_