| Index: chrome/gpu/gpu_channel.h
|
| diff --git a/chrome/gpu/gpu_channel.h b/chrome/gpu/gpu_channel.h
|
| index 75d57ca148f6cbbf0f0b89de832f9170ce0a3ad6..2ebe6d79c6f4ac76d6b424f5d66318ab51393adf 100644
|
| --- a/chrome/gpu/gpu_channel.h
|
| +++ b/chrome/gpu/gpu_channel.h
|
| @@ -59,6 +59,12 @@ class GpuChannel : public IPC::Channel::Listener,
|
| // IPC::Message::Sender implementation:
|
| virtual bool Send(IPC::Message* msg);
|
|
|
| + void CreateViewCommandBuffer(
|
| + gfx::PluginWindowHandle window,
|
| + int32 render_view_id,
|
| + const GPUCreateCommandBufferConfig& init_params,
|
| + int32* route_id);
|
| +
|
| #if defined(OS_MACOSX)
|
| virtual void AcceleratedSurfaceBuffersSwapped(
|
| int32 route_id, uint64 swap_buffers_count);
|
| @@ -73,11 +79,6 @@ class GpuChannel : public IPC::Channel::Listener,
|
| int GenerateRouteID();
|
|
|
| // Message handlers.
|
| - void OnCreateViewCommandBuffer(
|
| - gfx::NativeViewId view,
|
| - int32 render_view_id,
|
| - const GPUCreateCommandBufferConfig& init_params,
|
| - int32* route_id);
|
| void OnCreateOffscreenCommandBuffer(
|
| int32 parent_route_id,
|
| const gfx::Size& size,
|
|
|