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/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1243 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBUDPSocket_Close, | 1243 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBUDPSocket_Close, |
1244 uint32 /* socket_id */) | 1244 uint32 /* socket_id */) |
1245 | 1245 |
1246 // PPB_TCPServerSocket_Private. | 1246 // PPB_TCPServerSocket_Private. |
1247 IPC_MESSAGE_CONTROL5(PpapiHostMsg_PPBTCPServerSocket_Listen, | 1247 IPC_MESSAGE_CONTROL5(PpapiHostMsg_PPBTCPServerSocket_Listen, |
1248 int32 /* routing_id */, | 1248 int32 /* routing_id */, |
1249 uint32 /* plugin_dispatcher_id */, | 1249 uint32 /* plugin_dispatcher_id */, |
1250 uint32 /* temp_socket_id */, | 1250 uint32 /* temp_socket_id */, |
1251 PP_NetAddress_Private /* addr */, | 1251 PP_NetAddress_Private /* addr */, |
1252 int32_t /* backlog */) | 1252 int32_t /* backlog */) |
1253 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Accept, | 1253 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, |
| 1254 int32 /* tcp_client_sockets_routing_id */, |
1254 uint32 /* real_socket_id */) | 1255 uint32 /* real_socket_id */) |
1255 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, | 1256 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, |
1256 uint32 /* real_socket_id */) | 1257 uint32 /* real_socket_id */) |
1257 | 1258 |
1258 // PPB_Font. | 1259 // PPB_Font. |
1259 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1260 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1260 std::string /* result */) | 1261 std::string /* result */) |
1261 #endif // !defined(OS_NACL) | 1262 #endif // !defined(OS_NACL) |
1262 | |
OLD | NEW |