Index: content/browser/renderer_host/render_widget_host_view_aura.cc |
=================================================================== |
--- content/browser/renderer_host/render_widget_host_view_aura.cc (revision 112233) |
+++ content/browser/renderer_host/render_widget_host_view_aura.cc (working copy) |
@@ -106,7 +106,6 @@ |
void RenderWidgetHostViewAura::InitAsChild() { |
window_->Init(ui::Layer::LAYER_HAS_TEXTURE); |
- window_->SetName("RenderWidgetHostViewAura"); |
} |
//////////////////////////////////////////////////////////////////////////////// |
@@ -119,7 +118,6 @@ |
static_cast<RenderWidgetHostViewAura*>(parent_host_view); |
window_->SetType(aura::WINDOW_TYPE_MENU); |
window_->Init(ui::Layer::LAYER_HAS_TEXTURE); |
- window_->SetName("RenderWidgetHostViewAura"); |
window_->SetParent(NULL); |
Show(); |
@@ -138,7 +136,6 @@ |
is_fullscreen_ = true; |
window_->SetType(aura::WINDOW_TYPE_NORMAL); |
window_->Init(ui::Layer::LAYER_HAS_TEXTURE); |
- window_->SetName("RenderWidgetHostViewAura"); |
window_->SetIntProperty(aura::kShowStateKey, ui::SHOW_STATE_FULLSCREEN); |
window_->SetParent(NULL); |
Show(); |