Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index fbccd542b8534cc71006fafb2153cd5c3e11a072..a7d8a07bbbcad7d59ff07562649ce0611060bfe0 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -1412,6 +1412,19 @@ IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, |
| IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, |
| std::string /* fsid */) |
| +// MediaStream ----------------------------------------------------------------- |
| +// Message for init frames. It also takes a shared memory handle. |
|
Tom Sepez
2014/01/15 17:51:47
nit: I'm not sure I understand your comment about
Peng
2014/01/15 18:44:21
This message is sent from a Pepper host to a peppe
|
| +IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, |
| + std::string /* track_id */) |
| +IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, |
| + int32_t /* number_of_frames */, |
| + int32_t /* frame_size */) |
| +IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, |
| + int32_t /* index */); |
| +IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, |
| + int32_t /* index */); |
| +IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) |
| + |
| // NetworkMonitor. |
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create) |
| IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList, |