diff options
Diffstat (limited to 'content/public/renderer/render_thread.h')
-rw-r--r-- | content/public/renderer/render_thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/public/renderer/render_thread.h b/content/public/renderer/render_thread.h index f6a7816..353d38a 100644 --- a/content/public/renderer/render_thread.h +++ b/content/public/renderer/render_thread.h @@ -82,8 +82,8 @@ class CONTENT_EXPORT RenderThread : public IPC::Sender { virtual void RecordUserMetrics(const std::string& action) = 0; // Asks the host to create a block of shared memory for the renderer. - // The shared memory handle allocated by the host is returned back. - virtual base::SharedMemoryHandle HostAllocateSharedMemoryBuffer( + // The shared memory allocated by the host is returned back. + virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer( uint32 buffer_size) = 0; // Registers the given V8 extension with WebKit. |