| Index: content/common/gpu_host_messages.h
|
| diff --git a/content/common/gpu_host_messages.h b/content/common/gpu_host_messages.h
|
| index d9c7846d8d42f1b7d86032ffb5605a389a439266..9392dba560580826a97c628364cd5141f178ae4d 100644
|
| --- a/content/common/gpu_host_messages.h
|
| +++ b/content/common/gpu_host_messages.h
|
| @@ -196,6 +196,9 @@ IPC_MESSAGE_CONTROL1(AcceleratedSurfaceMsg_BufferPresented,
|
| #if defined(OS_ANDROID)
|
| // Tells the GPU process to wake up the GPU because we're about to draw.
|
| IPC_MESSAGE_CONTROL0(GpuMsg_WakeUpGpu)
|
| +
|
| +// Tells the GPU process to release the surface because it's being destroyed.
|
| +IPC_MESSAGE_CONTROL1(GpuMsg_DestroyingVideoSurface, int /* surface_id */)
|
| #endif
|
|
|
| // Tells the GPU process to remove all contexts.
|
| @@ -268,6 +271,13 @@ IPC_MESSAGE_CONTROL2(GpuHostMsg_AcceleratedSurfaceCreatedChildWindow,
|
| gpu::SurfaceHandle /* child_window */)
|
| #endif
|
|
|
| +#if defined(OS_ANDROID)
|
| +// Response to a GpuMsg_DestroyingVideoSurface message.
|
| +IPC_MESSAGE_CONTROL1(GpuHostMsg_DestroyingVideoSurfaceAck,
|
| + int /* surface_id */)
|
| +#endif
|
| +
|
| +
|
| IPC_MESSAGE_CONTROL1(GpuHostMsg_DidCreateOffscreenContext, GURL /* url */)
|
|
|
| IPC_MESSAGE_CONTROL3(GpuHostMsg_DidLoseContext,
|
|
|