Index: content/common/gpu/gpu_messages.h |
diff --git a/content/common/gpu/gpu_messages.h b/content/common/gpu/gpu_messages.h |
index 5026150b802bb909ca3d615649d6328069068844..e3d1c2ae7f3436d9d7ea125cb32c17d52e233aed 100644 |
--- a/content/common/gpu/gpu_messages.h |
+++ b/content/common/gpu/gpu_messages.h |
@@ -610,9 +610,9 @@ IPC_MESSAGE_ROUTED2(GpuCommandBufferMsg_SignalQuery, |
// used to identify the image from a command buffer. |
IPC_MESSAGE_ROUTED5(GpuCommandBufferMsg_CreateImage, |
int32 /* id */, |
- gfx::GpuMemoryBufferHandle /* gpu_memory_buffer */, |
+ gfx::GpuMemoryBufferHandle* /* gpu_memory_buffer */, |
reveman
2015/03/04 05:56:00
You can't pass pointers with IPC messages. You nee
emircan
2015/03/04 23:31:50
Changed it to std::vector<gfx::GpuMemoryBufferHand
|
gfx::Size /* size */, |
- gfx::GpuMemoryBuffer::Format /* format */, |
+ gfx::GpuMemoryBuffer::Format* /* format */, |
reveman
2015/03/04 05:56:00
ditto.
emircan
2015/03/04 23:31:50
Changed it to std::vector<GpuMemoryBuffer::Format>
|
uint32 /* internalformat */) |
// Destroy a previously created image. |