diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/gpu_messages_internal.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/chrome/common/gpu_messages_internal.h b/chrome/common/gpu_messages_internal.h index c2a2232..4c1a1ba 100644 --- a/chrome/common/gpu_messages_internal.h +++ b/chrome/common/gpu_messages_internal.h @@ -83,11 +83,6 @@ IPC_END_MESSAGES(Gpu) // These are messages from the GPU process to the browser. IPC_BEGIN_MESSAGES(GpuHost) - // This message is sent in response to BackingStoreMsg_New to tell the host - // about the child window that was just created. - IPC_MESSAGE_ROUTED1(GpuHostMsg_CreatedRenderWidgetHostView, - gfx::NativeViewId) - // Sent in response to GpuMsg_PaintToBackingStore, see that for more. IPC_MESSAGE_ROUTED0(GpuHostMsg_PaintToBackingStore_ACK) @@ -101,6 +96,13 @@ IPC_BEGIN_MESSAGES(GpuHost) // Response to a GpuMsg_Synchronize message. IPC_MESSAGE_CONTROL0(GpuHostMsg_SynchronizeReply) +#if defined(OS_LINUX) + // Get the XID for a view ID. + IPC_SYNC_MESSAGE_CONTROL1_1(GpuHostMsg_GetViewXID, + gfx::NativeViewId, /* view */ + unsigned long /* xid */) +#endif + IPC_END_MESSAGES(GpuHost) //------------------------------------------------------------------------------ |