diff options
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/command_buffer_stub.cc | 2 | ||||
-rw-r--r-- | chrome/plugin/command_buffer_stub.h | 2 | ||||
-rw-r--r-- | chrome/plugin/webplugin_delegate_stub.cc | 4 | ||||
-rw-r--r-- | chrome/plugin/webplugin_delegate_stub.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/chrome/plugin/command_buffer_stub.cc b/chrome/plugin/command_buffer_stub.cc index 9e80b14..09f4cdb 100644 --- a/chrome/plugin/command_buffer_stub.cc +++ b/chrome/plugin/command_buffer_stub.cc @@ -127,7 +127,7 @@ void CommandBufferStub::OnDestroyTransferBuffer(int32 id) { void CommandBufferStub::OnGetTransferBuffer( int32 id, base::SharedMemoryHandle* transfer_buffer, - size_t* size) { + uint32* size) { *transfer_buffer = base::SharedMemoryHandle(); *size = 0; diff --git a/chrome/plugin/command_buffer_stub.h b/chrome/plugin/command_buffer_stub.h index 539e241..f0d8ac0 100644 --- a/chrome/plugin/command_buffer_stub.h +++ b/chrome/plugin/command_buffer_stub.h @@ -48,7 +48,7 @@ class CommandBufferStub : public IPC::Channel::Listener, void OnDestroyTransferBuffer(int32 id); void OnGetTransferBuffer(int32 id, base::SharedMemoryHandle* transfer_buffer, - size_t* size); + uint32* size); #if defined(OS_MACOSX) void OnSetWindowSize(int32 width, int32 height); void SwapBuffersCallback(); diff --git a/chrome/plugin/webplugin_delegate_stub.cc b/chrome/plugin/webplugin_delegate_stub.cc index a24f7fa..7654058 100644 --- a/chrome/plugin/webplugin_delegate_stub.cc +++ b/chrome/plugin/webplugin_delegate_stub.cc @@ -278,7 +278,7 @@ void WebPluginDelegateStub::OnDidPaint() { } void WebPluginDelegateStub::OnPrint(base::SharedMemoryHandle* shared_memory, - size_t* size) { + uint32* size) { #if defined(OS_WIN) printing::NativeMetafile metafile; if (!metafile.CreateDc(NULL, NULL)) { @@ -407,7 +407,7 @@ void WebPluginDelegateStub::OnCreateCommandBuffer(int* route_id) { } void WebPluginDelegateStub::CreateSharedBuffer( - size_t size, + uint32 size, base::SharedMemory* shared_buf, base::SharedMemoryHandle* remote_handle) { if (!shared_buf->Create(std::wstring(), false, false, size)) { diff --git a/chrome/plugin/webplugin_delegate_stub.h b/chrome/plugin/webplugin_delegate_stub.h index efe93c10..36fda08 100644 --- a/chrome/plugin/webplugin_delegate_stub.h +++ b/chrome/plugin/webplugin_delegate_stub.h @@ -70,7 +70,7 @@ class WebPluginDelegateStub : public IPC::Channel::Listener, bool* handled, WebCursor* cursor); void OnPaint(const gfx::Rect& damaged_rect); void OnDidPaint(); - void OnPrint(base::SharedMemoryHandle* shared_memory, size_t* size); + void OnPrint(base::SharedMemoryHandle* shared_memory, uint32* size); void OnUpdateGeometry(const PluginMsg_UpdateGeometry_Param& param); void OnGetPluginScriptableObject(int* route_id); void OnSendJavaScriptStream(const GURL& url, @@ -98,7 +98,7 @@ class WebPluginDelegateStub : public IPC::Channel::Listener, int notify_id); void OnHTTPRangeRequestReply(unsigned long resource_id, int range_request_id); void OnCreateCommandBuffer(int* route_id); - void CreateSharedBuffer(size_t size, + void CreateSharedBuffer(uint32 size, base::SharedMemory* shared_buf, base::SharedMemoryHandle* remote_handle); |