diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-08 06:00:39 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-08 06:00:39 +0000 |
commit | 0ab5fab4939150bd0f30ada8a4bf6eb0f69d66c1 (patch) | |
tree | 267d22012a9b7b522391723529e9b54a6ddd2900 /content/common/gpu/gpu_command_buffer_stub.h | |
parent | 2bec3f1b0086e95d068440f774ccd14cea66cc64 (diff) | |
download | chromium_src-0ab5fab4939150bd0f30ada8a4bf6eb0f69d66c1.zip chromium_src-0ab5fab4939150bd0f30ada8a4bf6eb0f69d66c1.tar.gz chromium_src-0ab5fab4939150bd0f30ada8a4bf6eb0f69d66c1.tar.bz2 |
Sizes going across an IPC should be uint32.
BUG=164946
Review URL: https://chromiumcodereview.appspot.com/11472038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171944 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/gpu/gpu_command_buffer_stub.h')
-rw-r--r-- | content/common/gpu/gpu_command_buffer_stub.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/gpu/gpu_command_buffer_stub.h b/content/common/gpu/gpu_command_buffer_stub.h index 3baed15..0519e8c 100644 --- a/content/common/gpu/gpu_command_buffer_stub.h +++ b/content/common/gpu/gpu_command_buffer_stub.h @@ -152,11 +152,11 @@ class GpuCommandBufferStub void OnAsyncFlush(int32 put_offset, uint32 flush_count); void OnEcho(const IPC::Message& message); void OnRescheduled(); - void OnCreateTransferBuffer(int32 size, + void OnCreateTransferBuffer(uint32 size, int32 id_request, IPC::Message* reply_message); void OnRegisterTransferBuffer(base::SharedMemoryHandle transfer_buffer, - size_t size, + uint32 size, int32 id_request, IPC::Message* reply_message); void OnDestroyTransferBuffer(int32 id, IPC::Message* reply_message); |