1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chromecast/browser/cast_content_window.h"
7 #include "base/threading/thread_restrictions.h"
8 #include "chromecast/base/metrics/cast_metrics_helper.h"
9 #include "chromecast/browser/cast_browser_process.h"
10 #include "content/public/browser/render_view_host.h"
11 #include "content/public/browser/render_widget_host_view.h"
12 #include "content/public/browser/web_contents.h"
13 #include "ipc/ipc_message.h"
16 #include "chromecast/graphics/cast_screen.h"
17 #include "ui/aura/env.h"
18 #include "ui/aura/layout_manager.h"
19 #include "ui/aura/window.h"
20 #include "ui/aura/window_tree_host.h"
23 namespace chromecast
{
26 class CastFillLayout
: public aura::LayoutManager
{
28 explicit CastFillLayout(aura::Window
* root
) : root_(root
) {}
29 ~CastFillLayout() override
{}
32 void OnWindowResized() override
{}
34 void OnWindowAddedToLayout(aura::Window
* child
) override
{
35 child
->SetBounds(root_
->bounds());
38 void OnWillRemoveWindowFromLayout(aura::Window
* child
) override
{}
40 void OnWindowRemovedFromLayout(aura::Window
* child
) override
{}
42 void OnChildWindowVisibilityChanged(aura::Window
* child
,
43 bool visible
) override
{}
45 void SetChildBounds(aura::Window
* child
,
46 const gfx::Rect
& requested_bounds
) override
{
47 SetChildBoundsDirect(child
, requested_bounds
);
52 DISALLOW_COPY_AND_ASSIGN(CastFillLayout
);
56 CastContentWindow::CastContentWindow() : transparent_(false) {
59 CastContentWindow::~CastContentWindow() {
61 window_tree_host_
.reset();
62 // We don't delete the screen here to avoid a CHECK failure when
63 // the screen size is queried periodically for metric gathering. b/18101124
67 void CastContentWindow::CreateWindowTree(
68 const gfx::Size
& initial_size
,
69 content::WebContents
* web_contents
) {
71 // Aura initialization
72 CastScreen
* cast_screen
=
73 shell::CastBrowserProcess::GetInstance()->cast_screen();
74 if (!gfx::Screen::GetScreenByType(gfx::SCREEN_TYPE_NATIVE
))
75 gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE
, cast_screen
);
76 if (cast_screen
->GetPrimaryDisplay().size() != initial_size
)
77 cast_screen
->UpdateDisplaySize(initial_size
);
79 CHECK(aura::Env::GetInstance());
80 window_tree_host_
.reset(
81 aura::WindowTreeHost::Create(gfx::Rect(initial_size
)));
82 window_tree_host_
->InitHost();
83 window_tree_host_
->window()->SetLayoutManager(
84 new CastFillLayout(window_tree_host_
->window()));
87 window_tree_host_
->compositor()->SetBackgroundColor(SK_ColorTRANSPARENT
);
88 window_tree_host_
->compositor()->SetHostHasTransparentBackground(true);
90 window_tree_host_
->compositor()->SetBackgroundColor(SK_ColorBLACK
);
92 window_tree_host_
->Show();
94 // Add and show content's view/window
95 aura::Window
* content_window
= web_contents
->GetNativeView();
96 aura::Window
* parent
= window_tree_host_
->window();
97 if (!parent
->Contains(content_window
)) {
98 parent
->AddChild(content_window
);
100 content_window
->Show();
104 scoped_ptr
<content::WebContents
> CastContentWindow::CreateWebContents(
105 const gfx::Size
& initial_size
,
106 content::BrowserContext
* browser_context
) {
107 content::WebContents::CreateParams
create_params(browser_context
, NULL
);
108 create_params
.routing_id
= MSG_ROUTING_NONE
;
109 create_params
.initial_size
= initial_size
;
110 content::WebContents
* web_contents
= content::WebContents::Create(
112 content::WebContentsObserver::Observe(web_contents
);
113 return make_scoped_ptr(web_contents
);
116 void CastContentWindow::DidFirstVisuallyNonEmptyPaint() {
117 metrics::CastMetricsHelper::GetInstance()->LogTimeToFirstPaint();
120 void CastContentWindow::MediaPaused() {
121 metrics::CastMetricsHelper::GetInstance()->LogMediaPause();
124 void CastContentWindow::MediaStartedPlaying() {
125 metrics::CastMetricsHelper::GetInstance()->LogMediaPlay();
128 void CastContentWindow::RenderViewCreated(
129 content::RenderViewHost
* render_view_host
) {
130 content::RenderWidgetHostView
* view
= render_view_host
->GetView();
132 view
->SetBackgroundColor(transparent_
? SK_ColorTRANSPARENT
136 } // namespace chromecast