Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 9212047: Add GetBoundAddress to PPB_UDPSocket_Private (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix build error after rebase Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 PP_NetAddress_Private /* bound_addr */)
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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1161 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1161 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1162 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1162 ppapi::HostResource /* video_decoder */, 1163 ppapi::HostResource /* video_decoder */,
1163 int32_t /* picture buffer id */) 1164 int32_t /* picture buffer id */)
1164 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1165 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1165 ppapi::HostResource /* video_decoder */) 1166 ppapi::HostResource /* video_decoder */)
1166 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1167 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1167 ppapi::HostResource /* video_decoder */) 1168 ppapi::HostResource /* video_decoder */)
1168 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1169 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1169 ppapi::HostResource /* video_decoder */) 1170 ppapi::HostResource /* video_decoder */)
OLDNEW
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h ('k') | ppapi/proxy/ppb_udp_socket_private_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698