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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc

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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc b/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
index 726809305e193e0a62f6abe2633c5b48bbf0e85c..3e5a27b2fcab3ece7e933ab3d68a2b6b3414bd14 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/ppb_udp_socket_private.srpc
@@ -1,4 +1,4 @@
-# Copyright (c) 2011 The Native Client Authors. All rights reserved.
+# Copyright (c) 2012 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
@@ -28,6 +28,13 @@
'outputs': [['pp_error', 'int32_t'],
]
},
+ {'name': 'PPB_UDPSocket_Private_GetBoundAddress',
+ 'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
+ ],
+ 'outputs': [['addr', 'char[]'], # PP_NetAddress_Private*
+ ['success', 'int32_t'], # PP_Bool
+ ]
+ },
{'name': 'PPB_UDPSocket_Private_RecvFrom',
'inputs': [['udp_socket', 'PP_Resource'], # PP_Resource
['num_bytes', 'int32_t'],

Powered by Google App Engine
This is Rietveld 408576698