blob: 8c6f6e0d8deae5a16ee9b7882ea9489661a8ff0d [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_CAST_CONTENT_WINDOW_H_
#define CHROMECAST_BROWSER_CAST_CONTENT_WINDOW_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "content/public/browser/web_contents_observer.h"
namespace aura {
class WindowTreeHost;
namespace test {
class TestFocusClient;
} // namespace test
} // namespace aura
namespace content {
class BrowserContext;
class WebContents;
}
namespace gfx {
class Size;
}
namespace chromecast {
class CastContentWindow : public content::WebContentsObserver {
public:
CastContentWindow();
// Removes the window from the screen.
~CastContentWindow() override;
// Create a window with the given size for |web_contents|.
void CreateWindowTree(const gfx::Size& initial_size,
content::WebContents* web_contents);
scoped_ptr<content::WebContents> CreateWebContents(
const gfx::Size& initial_size,
content::BrowserContext* browser_context);
// content::WebContentsObserver implementation:
void DidFirstVisuallyNonEmptyPaint() override;
private:
#if defined(USE_AURA)
scoped_ptr<aura::WindowTreeHost> window_tree_host_;
scoped_ptr<aura::test::TestFocusClient> focus_client_;
#endif
DISALLOW_COPY_AND_ASSIGN(CastContentWindow);
};
} // namespace chromecast
#endif // CHROMECAST_BROWSER_CAST_CONTENT_WINDOW_H_