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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 uint32 /* socket_id */, | 307 uint32 /* socket_id */, |
308 bool /* succeeded */, | 308 bool /* succeeded */, |
309 std::string /* data */) | 309 std::string /* data */) |
310 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBTCPSocket_WriteACK, | 310 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBTCPSocket_WriteACK, |
311 uint32 /* plugin_dispatcher_id */, | 311 uint32 /* plugin_dispatcher_id */, |
312 uint32 /* socket_id */, | 312 uint32 /* socket_id */, |
313 bool /* succeeded */, | 313 bool /* succeeded */, |
314 int32_t /* bytes_written */) | 314 int32_t /* bytes_written */) |
315 | 315 |
316 // PPB_UDPSocket_Private | 316 // PPB_UDPSocket_Private |
317 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBUDPSocket_BindACK, | 317 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBUDPSocket_BindACK, |
318 uint32 /* plugin_dispatcher_id */, | 318 uint32 /* plugin_dispatcher_id */, |
319 uint32 /* socket_id */, | 319 uint32 /* socket_id */, |
320 bool /* succeeded */) | 320 bool /* succeeded */, |
| 321 uint32 /* bound_port */) |
321 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBUDPSocket_RecvFromACK, | 322 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBUDPSocket_RecvFromACK, |
322 uint32 /* plugin_dispatcher_id */, | 323 uint32 /* plugin_dispatcher_id */, |
323 uint32 /* socket_id */, | 324 uint32 /* socket_id */, |
324 bool /* succeeded */, | 325 bool /* succeeded */, |
325 std::string /* data */, | 326 std::string /* data */, |
326 PP_NetAddress_Private /* remote_addr */) | 327 PP_NetAddress_Private /* remote_addr */) |
327 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBUDPSocket_SendToACK, | 328 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBUDPSocket_SendToACK, |
328 uint32 /* plugin_dispatcher_id */, | 329 uint32 /* plugin_dispatcher_id */, |
329 uint32 /* socket_id */, | 330 uint32 /* socket_id */, |
330 bool /* succeeded */, | 331 bool /* succeeded */, |
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1130 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1130 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1131 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1131 ppapi::HostResource /* video_decoder */, | 1132 ppapi::HostResource /* video_decoder */, |
1132 int32_t /* picture buffer id */) | 1133 int32_t /* picture buffer id */) |
1133 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1134 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1134 ppapi::HostResource /* video_decoder */) | 1135 ppapi::HostResource /* video_decoder */) |
1135 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1136 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1136 ppapi::HostResource /* video_decoder */) | 1137 ppapi::HostResource /* video_decoder */) |
1137 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1138 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1138 ppapi::HostResource /* video_decoder */) | 1139 ppapi::HostResource /* video_decoder */) |
OLD | NEW |