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

Unified Diff: chrome/common/gpu_messages_internal.h

Issue 5317007: Add flow control between renderer and GPU processes, and, on Mac OS X,... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/gpu_messages_internal.h
===================================================================
--- chrome/common/gpu_messages_internal.h (revision 67289)
+++ chrome/common/gpu_messages_internal.h (working copy)
@@ -51,6 +51,18 @@
// information.
IPC_MESSAGE_CONTROL0(GpuMsg_CollectGraphicsInfo)
+#if defined(OS_MACOSX)
+ // Tells the GPU process that the browser process handled the swap
+ // buffers request with the given number. Note that it is possible
+ // for the browser process to coalesce frames; it is not guaranteed
+ // that every GpuHostMsg_AcceleratedSurfaceBuffersSwapped message
+ // will result in a buffer swap on the browser side.
+ IPC_MESSAGE_CONTROL3(GpuMsg_AcceleratedSurfaceBuffersSwappedACK,
+ int /* renderer_id */,
+ int32 /* route_id */,
+ uint64 /* swap_buffers_count */)
+#endif
+
// Tells the GPU process to crash.
IPC_MESSAGE_CONTROL0(GpuMsg_Crash)
@@ -93,11 +105,8 @@
// This message notifies the browser process that the renderer
// swapped the buffers associated with the given "window", which
// should cause the browser to redraw the compositor's contents.
- IPC_MESSAGE_CONTROL4(GpuHostMsg_AcceleratedSurfaceBuffersSwapped,
- int32, /* renderer_id */
- int32, /* render_view_id */
- gfx::PluginWindowHandle /* window */,
- uint64 /* surface_id */)
+ IPC_MESSAGE_CONTROL1(GpuHostMsg_AcceleratedSurfaceBuffersSwapped,
+ GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params)
#endif
IPC_END_MESSAGES(GpuHost)
@@ -225,13 +234,6 @@
// browser. This message is currently used only on 10.6 and later.
IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetWindowSize,
gfx::Size /* size */)
-
- // This message is sent from the GPU process to the renderer process (and
- // from there the browser process) that the buffers associated with the
- // given "window" were swapped, which should cause the browser to redraw
- // the various accelerated surfaces.
- IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_AcceleratedSurfaceBuffersSwapped,
- gfx::PluginWindowHandle /* window */)
#endif
IPC_END_MESSAGES(GpuCommandBuffer)

Powered by Google App Engine
This is Rietveld 408576698