Chromium Code Reviews| Index: ppapi/api/private/ppb_udp_socket_private.idl |
| diff --git a/ppapi/api/private/ppb_udp_socket_private.idl b/ppapi/api/private/ppb_udp_socket_private.idl |
| index 4babbb4a4dbd915a962d354947fd3f986b5d4823..ecc346d20723099074b42e02ca8243ccdf093125 100644 |
| --- a/ppapi/api/private/ppb_udp_socket_private.idl |
| +++ b/ppapi/api/private/ppb_udp_socket_private.idl |
| @@ -27,6 +27,12 @@ interface PPB_UDPSocket_Private { |
| [in] PP_NetAddress_Private addr, |
| [in] PP_CompletionCallback callback); |
| + /* Upon successful completion of Bind, the address that we have |
| + * bound to is stored in |addr| |
|
yzshen1
2012/02/06 06:51:27
Nit: This comment is inaccurate. The address is no
mtilburg1
2012/02/06 15:11:35
Done.
|
| + */ |
| + PP_Bool GetBoundAddress([in] PP_Resource udp_socket, |
|
yzshen1
2012/02/06 06:51:27
You need to consider backward compatibility. This
mtilburg1
2012/02/06 15:11:35
I added M18 = 0.3.... is this correct? When I add
yzshen1
2012/02/06 18:12:50
Please use M19.
|
| + [out] PP_NetAddress_Private addr); |
| + |
| /* Performs a non-blocking recvfrom call on socket. |
| * Bind must be called first. |callback| is invoked when recvfrom |
| * reads data. You must call GetRecvFromAddress to recover the |