Index: ppapi/proxy/ppapi_messages.h |
diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
index 581d3f00a0a8b9fc493bcde93dbb3256e7120127..f1d076f9108b659109cb81660141cbdcf0fd5c5e 100644 |
--- a/ppapi/proxy/ppapi_messages.h |
+++ b/ppapi/proxy/ppapi_messages.h |
@@ -1842,4 +1842,27 @@ IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
uint32_t /* buffer */) |
+// MediaStream ----------------------------------------------------------------- |
+ |
+// VideoDestination Private. |
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Create) |
+IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoDestination_Open, |
+ std::string /* stream_url */) |
+IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDestination_OpenReply) |
+IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDestination_PutFrame, |
+ ppapi::HostResource /* image_data */, |
+ PP_TimeTicks /* timestamp */) |
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDestination_Close) |
+ |
+// VideoSource Private. |
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Create) |
+IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoSource_Open, |
+ std::string /* stream_url */) |
+IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoSource_OpenReply) |
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_GetFrame) |
+IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoSource_GetFrameReply, |
+ ppapi::HostResource /* image_data */, |
+ PP_TimeTicks /* timestamp */) |
+IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
+ |
#endif // !defined(OS_NACL) && !defined(NACL_WIN64) |