Index: content/common/browser_plugin/browser_plugin_messages.h |
diff --git a/content/common/browser_plugin/browser_plugin_messages.h b/content/common/browser_plugin/browser_plugin_messages.h |
index 1a5a5f7be490c55c59aa8a8f68827708910ae679..4b4c4c2dfecba70de6ae9e8367cf3fffbcc5d121 100644 |
--- a/content/common/browser_plugin/browser_plugin_messages.h |
+++ b/content/common/browser_plugin/browser_plugin_messages.h |
@@ -8,6 +8,7 @@ |
#include "base/basictypes.h" |
#include "base/process/process.h" |
+#include "cc/surfaces/surface.h" |
#include "content/common/content_export.h" |
#include "content/common/content_param_traits.h" |
#include "content/common/cursors/webcursor.h" |
@@ -152,6 +153,15 @@ IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_UpdateGeometry, |
int /* browser_plugin_instance_id */, |
gfx::Rect /* view_rect */) |
+IPC_MESSAGE_ROUTED2(BrowserPluginHostMsg_SatisfySequence, |
+ int /* browser_plugin_instance_id */, |
+ cc::SurfaceSequence /* sequence */) |
+ |
+IPC_MESSAGE_ROUTED3(BrowserPluginHostMsg_RequireSequence, |
+ int /* browser_plugin_instance_id */, |
+ cc::SurfaceId /* surface_id */, |
+ cc::SurfaceSequence /* sequence */) |
+ |
// ----------------------------------------------------------------------------- |
// These messages are from the browser process to the embedder. |
@@ -186,6 +196,13 @@ IPC_MESSAGE_CONTROL2(BrowserPluginMsg_CompositorFrameSwapped, |
int /* browser_plugin_instance_id */, |
FrameMsg_CompositorFrameSwapped_Params /* params */) |
+IPC_MESSAGE_CONTROL5(BrowserPluginMsg_SetChildFrameSurface, |
+ int /* browser_plugin_instance_id */, |
+ cc::SurfaceId /* surface_id */, |
+ gfx::Size /* frame_size */, |
+ float /* scale_factor */, |
+ cc::SurfaceSequence /* sequence */) |
+ |
// Forwards a PointerLock Unlock request to the BrowserPlugin. |
IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, |
int /* browser_plugin_instance_id */, |