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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1405 PP_Point /* top_left */) | 1405 PP_Point /* top_left */) |
1406 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) | 1406 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) |
1407 | 1407 |
1408 // IsolatedFileSystem | 1408 // IsolatedFileSystem |
1409 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) | 1409 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) |
1410 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, | 1410 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, |
1411 PP_IsolatedFileSystemType_Private /* type */) | 1411 PP_IsolatedFileSystemType_Private /* type */) |
1412 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, | 1412 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, |
1413 std::string /* fsid */) | 1413 std::string /* fsid */) |
1414 | 1414 |
1415 // MediaStream ----------------------------------------------------------------- | |
1416 // 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
| |
1417 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost, | |
1418 std::string /* track_id */) | |
1419 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_MediaStreamTrack_InitFrames, | |
1420 int32_t /* number_of_frames */, | |
1421 int32_t /* frame_size */) | |
1422 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamTrack_EnqueueFrame, | |
1423 int32_t /* index */); | |
1424 IPC_MESSAGE_CONTROL1(PpapiHostMsg_MediaStreamTrack_EnqueueFrame, | |
1425 int32_t /* index */); | |
1426 IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamTrack_Close) | |
1427 | |
1415 // NetworkMonitor. | 1428 // NetworkMonitor. |
1416 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create) | 1429 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create) |
1417 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList, | 1430 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList, |
1418 ppapi::proxy::SerializedNetworkList /* network_list */) | 1431 ppapi::proxy::SerializedNetworkList /* network_list */) |
1419 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_NetworkMonitor_Forbidden) | 1432 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_NetworkMonitor_Forbidden) |
1420 | 1433 |
1421 // NetworkProxy ---------------------------------------------------------------- | 1434 // NetworkProxy ---------------------------------------------------------------- |
1422 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkProxy_Create) | 1435 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkProxy_Create) |
1423 | 1436 |
1424 // Query the browser for the proxy server to use for the given URL. | 1437 // Query the browser for the proxy server to use for the given URL. |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2012 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2025 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2013 PP_TalkPermission /* permission */) | 2026 PP_TalkPermission /* permission */) |
2014 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2027 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2015 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2028 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2016 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2029 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2017 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2030 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2018 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2031 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2019 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2032 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2020 | 2033 |
2021 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2034 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |