| Index: content/browser/renderer_host/render_widget_host_view_aura.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| index 2f018c178b771d68a9fc31651cb81be8ff07e246..bc92325c95c1c41fe0d53baa9b159fd0e83c08f0 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| @@ -496,7 +496,7 @@ RenderWidgetHostViewAura::RenderWidgetHostViewAura(RenderWidgetHost* host)
|
|
|
| void RenderWidgetHostViewAura::InitAsChild(
|
| gfx::NativeView parent_view) {
|
| - window_->Init(ui::LAYER_TEXTURED);
|
| + window_->Init(aura::WINDOW_LAYER_TEXTURED);
|
| window_->SetName("RenderWidgetHostViewAura");
|
| }
|
|
|
| @@ -524,7 +524,7 @@ void RenderWidgetHostViewAura::InitAsPopup(
|
| }
|
| popup_parent_host_view_->popup_child_host_view_ = this;
|
| window_->SetType(ui::wm::WINDOW_TYPE_MENU);
|
| - window_->Init(ui::LAYER_TEXTURED);
|
| + window_->Init(aura::WINDOW_LAYER_TEXTURED);
|
| window_->SetName("RenderWidgetHostViewAura");
|
|
|
| aura::Window* root = popup_parent_host_view_->window_->GetRootWindow();
|
| @@ -549,7 +549,7 @@ void RenderWidgetHostViewAura::InitAsFullscreen(
|
| RenderWidgetHostView* reference_host_view) {
|
| is_fullscreen_ = true;
|
| window_->SetType(ui::wm::WINDOW_TYPE_NORMAL);
|
| - window_->Init(ui::LAYER_TEXTURED);
|
| + window_->Init(aura::WINDOW_LAYER_TEXTURED);
|
| window_->SetName("RenderWidgetHostViewAura");
|
| window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_FULLSCREEN);
|
|
|
|
|