blob: 7101db1f00a67f634fd7140f672660e819215ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// 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"
namespace aura {
class WindowTreeHost;
}
namespace content {
class BrowserContext;
class WebContents;
}
namespace gfx {
class Size;
}
namespace chromecast {
class CastContentWindow {
public:
CastContentWindow();
// Removes the window from the screen.
~CastContentWindow();
// Create a window with the given size.
scoped_ptr<content::WebContents> Create(
const gfx::Size& initial_size,
content::BrowserContext* browser_context);
private:
#if defined(USE_AURA)
scoped_ptr<aura::WindowTreeHost> window_tree_host_;
#endif
DISALLOW_COPY_AND_ASSIGN(CastContentWindow);
};
} // namespace chromecast
#endif // CHROMECAST_BROWSER_CAST_CONTENT_WINDOW_H_
|