| 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 00ebb22346423634e5aef002174b623d0f03de42..08844ef8a7e06cc61101e6a9a5114a72b4ac10e1 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -330,8 +330,8 @@ void RenderWidgetHostImpl::SetView(RenderWidgetHostViewBase* view) {
|
| // 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_SetSurfaceIdNamespace(routing_id_,
|
| - view_->GetSurfaceIdNamespace()));
|
| + Send(new ViewMsg_SetSurfaceClientId(routing_id_,
|
| + view_->GetSurfaceClientId()));
|
| }
|
|
|
| synthetic_gesture_controller_.reset();
|
| @@ -403,8 +403,8 @@ void RenderWidgetHostImpl::Init() {
|
| // 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_SetSurfaceIdNamespace(routing_id_,
|
| - view_->GetSurfaceIdNamespace()));
|
| + Send(new ViewMsg_SetSurfaceClientId(routing_id_,
|
| + view_->GetSurfaceClientId()));
|
| }
|
|
|
| SendScreenRects();
|
|
|