| 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 01ba994fda3b08013b22ba14dd0deb87900a1027..40cbc5f6c0daab51c204104c669f04a69f031756 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| @@ -95,11 +95,17 @@ void RenderWidgetHostViewAura::InitAsPopup(
|
| RenderWidgetHostView* parent_host_view,
|
| const gfx::Rect& pos) {
|
| NOTIMPLEMENTED();
|
| + // TODO(ivankr): there has to be an Init() call, otherwise |window_|
|
| + // is left uninitialized and will eventually crash.
|
| + Init();
|
| }
|
|
|
| void RenderWidgetHostViewAura::InitAsFullscreen(
|
| RenderWidgetHostView* reference_host_view) {
|
| NOTIMPLEMENTED();
|
| + // TODO(ivankr): there has to be an Init() call, otherwise |window_|
|
| + // is left uninitialized and will eventually crash.
|
| + Init();
|
| }
|
|
|
| RenderWidgetHost* RenderWidgetHostViewAura::GetRenderWidgetHost() const {
|
|
|