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 <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1740 | 1740 |
1741 // Unsolicited reply message to notify that the connection is closed without | 1741 // Unsolicited reply message to notify that the connection is closed without |
1742 // any WebSocket_Close request. Server initiated closing handshake or | 1742 // any WebSocket_Close request. Server initiated closing handshake or |
1743 // unexpected network errors will invoke this message. | 1743 // unexpected network errors will invoke this message. |
1744 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_WebSocket_ClosedReply, | 1744 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_WebSocket_ClosedReply, |
1745 uint64_t /* buffered_amount */, | 1745 uint64_t /* buffered_amount */, |
1746 bool /* was_clean */, | 1746 bool /* was_clean */, |
1747 uint16_t /* code */, | 1747 uint16_t /* code */, |
1748 std::string /* reason */) | 1748 std::string /* reason */) |
1749 | 1749 |
| 1750 // OutputProtection ----------------------------------------------------------- |
| 1751 |
| 1752 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_Create) |
| 1753 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_Init) |
| 1754 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_Terminate) |
| 1755 IPC_MESSAGE_CONTROL1(PpapiHostMsg_OutputProtection_EnableProtection, |
| 1756 uint32_t /* desired_method_mask */) |
| 1757 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply) |
| 1758 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus) |
| 1759 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply, |
| 1760 uint32_t /* link_mask */, |
| 1761 uint32_t /* protection_mask */) |
| 1762 |
1750 #if !defined(OS_NACL) && !defined(NACL_WIN64) | 1763 #if !defined(OS_NACL) && !defined(NACL_WIN64) |
1751 | 1764 |
1752 // Audio input. | 1765 // Audio input. |
1753 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioInput_Create) | 1766 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioInput_Create) |
1754 IPC_MESSAGE_CONTROL3(PpapiHostMsg_AudioInput_Open, | 1767 IPC_MESSAGE_CONTROL3(PpapiHostMsg_AudioInput_Open, |
1755 std::string /* device_id */, | 1768 std::string /* device_id */, |
1756 PP_AudioSampleRate /* sample_rate */, | 1769 PP_AudioSampleRate /* sample_rate */, |
1757 uint32_t /* sample_frame_count */) | 1770 uint32_t /* sample_frame_count */) |
1758 // Reply to an Open call. This supplies a socket handle and a shared memory | 1771 // Reply to an Open call. This supplies a socket handle and a shared memory |
1759 // handle. Both handles are passed in the ReplyParams struct. | 1772 // handle. Both handles are passed in the ReplyParams struct. |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2021 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2034 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2022 PP_TalkPermission /* permission */) | 2035 PP_TalkPermission /* permission */) |
2023 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2036 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2024 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2037 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2025 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2038 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2026 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2039 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2027 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2040 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2028 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2041 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2029 | 2042 |
2030 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2043 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |