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

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: add backward compatability to interface, fix other review comments 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1138 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1138 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1139 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1139 ppapi::HostResource /* video_decoder */, 1140 ppapi::HostResource /* video_decoder */,
1140 int32_t /* picture buffer id */) 1141 int32_t /* picture buffer id */)
1141 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1142 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1142 ppapi::HostResource /* video_decoder */) 1143 ppapi::HostResource /* video_decoder */)
1143 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1144 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1144 ppapi::HostResource /* video_decoder */) 1145 ppapi::HostResource /* video_decoder */)
1145 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1146 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1146 ppapi::HostResource /* video_decoder */) 1147 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698