Index: content/common/gpu/gpu_channel.cc |
=================================================================== |
--- content/common/gpu/gpu_channel.cc (revision 111041) |
+++ content/common/gpu/gpu_channel.cc (working copy) |
@@ -209,6 +209,14 @@ |
#endif // ENABLE_GPU |
} |
+void GpuChannel::ViewResized(int32 command_buffer_route_id) { |
+ GpuCommandBufferStub* stub = stubs_.Lookup(command_buffer_route_id); |
+ if (stub == NULL) |
+ return; |
+ |
+ stub->ViewResized(); |
+} |
+ |
GpuCommandBufferStub* GpuChannel::LookupCommandBuffer(int32 route_id) { |
return stubs_.Lookup(route_id); |
} |