Index: components/mus/ws/window_tree_host_impl.cc |
diff --git a/components/mus/ws/window_tree_host_impl.cc b/components/mus/ws/window_tree_host_impl.cc |
index 0f2e33a75667d3d95a6ce773b26d65ee9eb02bca..2019e0c18dfce861725a2dad647d6bf3c27c297c 100644 |
--- a/components/mus/ws/window_tree_host_impl.cc |
+++ b/components/mus/ws/window_tree_host_impl.cc |
@@ -164,7 +164,8 @@ void WindowTreeHostImpl::OnViewportMetricsChanged( |
const mojom::ViewportMetrics& new_metrics) { |
if (!root_) { |
root_.reset(connection_manager_->CreateServerWindow( |
- RootWindowId(connection_manager_->GetAndAdvanceNextHostId()))); |
+ RootWindowId(connection_manager_->GetAndAdvanceNextHostId()), |
+ ServerWindow::Properties())); |
root_->SetBounds(gfx::Rect(new_metrics.size_in_pixels.To<gfx::Size>())); |
root_->SetVisible(true); |
if (delegate_) |