OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1427 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) | 1427 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) |
1428 | 1428 |
1429 // IsolatedFileSystem | 1429 // IsolatedFileSystem |
1430 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) | 1430 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) |
1431 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, | 1431 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, |
1432 PP_IsolatedFileSystemType_Private /* type */) | 1432 PP_IsolatedFileSystemType_Private /* type */) |
1433 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, | 1433 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, |
1434 std::string /* fsid */) | 1434 std::string /* fsid */) |
1435 | 1435 |
1436 // MediaStream ----------------------------------------------------------------- | 1436 // MediaStream ----------------------------------------------------------------- |
1437 // Message for init frames. It also takes a shared memory handle. | 1437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost, |
1438 std::string /* track_id */) | |
1438 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, | 1439 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, |
1439 std::string /* track_id */) | 1440 std::string /* track_id */) |
1441 | |
1442 // Message for init frames. It also takes a shared memory handle. | |
dmichael (off chromium)
2014/02/03 22:18:34
Might be clearer to explain that the shared memory
Peng
2014/02/03 22:50:31
Done.
| |
1440 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, | 1443 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, |
1441 int32_t /* number_of_frames */, | 1444 int32_t /* number_of_frames */, |
1442 int32_t /* frame_size */) | 1445 int32_t /* frame_size */) |
1443 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, | 1446 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, |
1444 int32_t /* index */); | 1447 int32_t /* index */); |
1445 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, | 1448 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, |
1446 int32_t /* index */); | 1449 int32_t /* index */); |
1447 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) | 1450 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) |
1448 | 1451 |
1449 // NetworkMonitor. | 1452 // NetworkMonitor. |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2058 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2061 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2059 PP_TalkPermission /* permission */) | 2062 PP_TalkPermission /* permission */) |
2060 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2063 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2061 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2064 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2062 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2065 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2063 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2066 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2064 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2067 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2065 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2068 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2066 | 2069 |
2067 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2070 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |