| 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 9b7b662c44f1d08128be7ca4702ce076788177a4..ba5da59e74a80d0454fb6d36373036dd1cb18706 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| @@ -142,7 +142,7 @@ RenderWidgetHostViewAura::~RenderWidgetHostViewAura() {
|
|
|
| void RenderWidgetHostViewAura::InitAsChild(
|
| gfx::NativeView parent_view) {
|
| - window_->Init(ui::Layer::LAYER_HAS_TEXTURE);
|
| + window_->Init(ui::Layer::LAYER_TEXTURED);
|
| window_->SetName("RenderWidgetHostViewAura");
|
| }
|
|
|
| @@ -153,7 +153,7 @@ void RenderWidgetHostViewAura::InitAsPopup(
|
| static_cast<RenderWidgetHostViewAura*>(parent_host_view);
|
| popup_parent_host_view_->popup_child_host_view_ = this;
|
| window_->SetType(aura::client::WINDOW_TYPE_MENU);
|
| - window_->Init(ui::Layer::LAYER_HAS_TEXTURE);
|
| + window_->Init(ui::Layer::LAYER_TEXTURED);
|
| window_->SetName("RenderWidgetHostViewAura");
|
|
|
| window_->SetParent(NULL);
|
| @@ -172,7 +172,7 @@ void RenderWidgetHostViewAura::InitAsFullscreen(
|
| RenderWidgetHostView* reference_host_view) {
|
| is_fullscreen_ = true;
|
| window_->SetType(aura::client::WINDOW_TYPE_NORMAL);
|
| - window_->Init(ui::Layer::LAYER_HAS_TEXTURE);
|
| + window_->Init(ui::Layer::LAYER_TEXTURED);
|
| window_->SetName("RenderWidgetHostViewAura");
|
| window_->SetIntProperty(aura::client::kShowStateKey,
|
| ui::SHOW_STATE_FULLSCREEN);
|
|
|