| Index: content/browser/renderer_host/render_widget_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
| index 9809d8d639d426fce3c46a1459916c4e6cac217e..1eeb641e6e30754a9d1d696c82287b76ae8060d0 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -341,12 +341,6 @@ void RenderWidgetHostImpl::SetView(RenderWidgetHostViewBase* view) {
|
| view_.reset();
|
| }
|
|
|
| - // If the renderer has not yet been initialized, then the surface ID
|
| - // namespace will be sent during initialization.
|
| - if (view_ && renderer_initialized_) {
|
| - Send(new ViewMsg_SetFrameSinkId(routing_id_, view_->GetFrameSinkId()));
|
| - }
|
| -
|
| synthetic_gesture_controller_.reset();
|
| }
|
|
|
| @@ -413,12 +407,6 @@ void RenderWidgetHostImpl::Init() {
|
|
|
| renderer_initialized_ = true;
|
|
|
| - // If the RWHV has not yet been set, the surface ID namespace will get
|
| - // passed down by the call to SetView().
|
| - if (view_) {
|
| - Send(new ViewMsg_SetFrameSinkId(routing_id_, view_->GetFrameSinkId()));
|
| - }
|
| -
|
| SendScreenRects();
|
| WasResized();
|
|
|
|
|