Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7601)

Unified Diff: chrome/common/render_messages_internal.h

Issue 6557006: Moved creation of GPU transfer buffers into the browser process.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 75655)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -653,8 +653,9 @@
// The browser sends this to a renderer process in response to a
// GpuHostMsg_EstablishGpuChannel message.
-IPC_MESSAGE_CONTROL2(ViewMsg_GpuChannelEstablished,
+IPC_MESSAGE_CONTROL3(ViewMsg_GpuChannelEstablished,
IPC::ChannelHandle /* handle to channel */,
+ base::ProcessHandle /* gpu_renderer_process */,
GPUInfo /* stats about GPU process*/)
// Notifies the renderer of the appcache that has been selected for a
@@ -1914,13 +1915,11 @@
int /* fd in browser */)
#endif
-#if defined(OS_POSIX)
// Asks the browser to create a block of shared memory for the renderer to
// fill in and pass back to the browser.
IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_AllocateSharedMemoryBuffer,
uint32 /* buffer size */,
base::SharedMemoryHandle /* browser handle */)
-#endif
// Provide the browser process with information about the WebCore resource
// cache.

Powered by Google App Engine
This is Rietveld 408576698