| Index: content/common/child_process_messages.h
|
| diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h
|
| index e757ca19dd3a265ee8f48dd59c3dd61d7bf6df3c..8c7151c567dddc25dd841f019ec35e35bd4217ee 100644
|
| --- a/content/common/child_process_messages.h
|
| +++ b/content/common/child_process_messages.h
|
| @@ -137,14 +137,6 @@ IPC_MESSAGE_CONTROL0(ChildProcessMsg_Resume)
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // Messages sent from the child process to the browser.
|
|
|
| -// A renderer sends this when it wants to create a connection to the GPU
|
| -// process. The browser will create the GPU process if necessary, and will
|
| -// return a handle to the channel via a GpuChannelEstablished message.
|
| -IPC_SYNC_MESSAGE_CONTROL0_3(ChildProcessHostMsg_EstablishGpuChannel,
|
| - int /* client id */,
|
| - IPC::ChannelHandle /* handle to channel */,
|
| - gpu::GPUInfo /* stats about GPU process*/)
|
| -
|
| // A renderer sends this when it wants to know whether a gpu process exists.
|
| IPC_SYNC_MESSAGE_CONTROL0_1(ChildProcessHostMsg_HasGpuProcess,
|
| bool /* result */)
|
| @@ -179,20 +171,6 @@ IPC_SYNC_MESSAGE_CONTROL1_0(ChildProcessHostMsg_PreCacheFont,
|
| IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ReleaseCachedFonts)
|
| #endif // defined(OS_WIN)
|
|
|
| -// Asks the browser to create a gpu memory buffer.
|
| -IPC_SYNC_MESSAGE_CONTROL5_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer,
|
| - gfx::GpuMemoryBufferId /* new_id */,
|
| - uint32_t /* width */,
|
| - uint32_t /* height */,
|
| - gfx::BufferFormat,
|
| - gfx::BufferUsage,
|
| - gfx::GpuMemoryBufferHandle)
|
| -
|
| -// Informs the browser that the child deleted a gpu memory buffer.
|
| -IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer,
|
| - gfx::GpuMemoryBufferId,
|
| - gpu::SyncToken /* sync_token */)
|
| -
|
| #if defined(OS_LINUX)
|
| // Asks the browser to change the priority of thread.
|
| IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority,
|
|
|