| Index: content/common/gpu/gpu_command_buffer_stub.cc
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
|
| index a53364a3e0861560d09a4767b6f556674e6ca9d9..d38d9c9479adcf6dc8d26145428ab5cac68a6a25 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.cc
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.cc
|
| @@ -566,7 +566,7 @@ void GpuCommandBufferStub::OnResize(gfx::Size size) {
|
| // asynchronously.
|
| uint64 new_backing_store = accelerated_surface_->SetSurfaceSize(size);
|
| if (new_backing_store) {
|
| - GpuHostMsg_AcceleratedSurfaceSetIOSurface_Params params;
|
| + GpuHostMsg_AcceleratedSurfaceNew_Params params;
|
| params.renderer_id = renderer_id_;
|
| params.render_view_id = render_view_id_;
|
| params.window = handle_;
|
| @@ -574,7 +574,7 @@ void GpuCommandBufferStub::OnResize(gfx::Size size) {
|
| params.height = size.height();
|
| params.identifier = new_backing_store;
|
| gpu_channel_manager->Send(
|
| - new GpuHostMsg_AcceleratedSurfaceSetIOSurface(params));
|
| + new GpuHostMsg_AcceleratedSurfaceNew(params));
|
| } else {
|
| // TODO(kbr): figure out what to do here. It wouldn't be difficult
|
| // to support the compositor on 10.5, but the performance would be
|
|
|