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

Unified Diff: ppapi/api/dev/ppb_udp_socket_dev.idl

Issue 17419008: Move PPB_NetAddress out of dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « ppapi/api/dev/ppb_tcp_socket_dev.idl ('k') | ppapi/api/ppb_net_address.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/dev/ppb_udp_socket_dev.idl
diff --git a/ppapi/api/dev/ppb_udp_socket_dev.idl b/ppapi/api/dev/ppb_udp_socket_dev.idl
index 95d02ac26129095877432ccd98614f4fbbb6b533..193bec04455c69e1f5b1d9ce2db4bdb7f1714165 100644
--- a/ppapi/api/dev/ppb_udp_socket_dev.idl
+++ b/ppapi/api/dev/ppb_udp_socket_dev.idl
@@ -92,7 +92,7 @@ interface PPB_UDPSocket_Dev {
*
* @param[in] udp_socket A <code>PP_Resource</code> corresponding to a UDP
* socket.
- * @param[in] addr A <code>PPB_NetAddress_Dev</code> resource.
+ * @param[in] addr A <code>PPB_NetAddress</code> resource.
* @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
* completion.
*
@@ -111,8 +111,7 @@ interface PPB_UDPSocket_Dev {
* @param[in] udp_socket A <code>PP_Resource</code> corresponding to a UDP
* socket.
*
- * @return A <code>PPB_NetAddress_Dev</code> resource on success or 0 on
- * failure.
+ * @return A <code>PPB_NetAddress</code> resource on success or 0 on failure.
*/
PP_Resource GetBoundAddress([in] PP_Resource udp_socket);
@@ -125,8 +124,8 @@ interface PPB_UDPSocket_Dev {
* @param[out] buffer The buffer to store the received data on success. It
* must be at least as large as <code>num_bytes</code>.
* @param[in] num_bytes The number of bytes to receive.
- * @param[out] addr A <code>PPB_NetAddress_Dev</code> resource to store the
- * source address on success.
+ * @param[out] addr A <code>PPB_NetAddress</code> resource to store the source
+ * address on success.
* @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
* completion.
*
@@ -146,7 +145,7 @@ interface PPB_UDPSocket_Dev {
* socket.
* @param[in] buffer The buffer containing the data to send.
* @param[in] num_bytes The number of bytes to send.
- * @param[in] addr A <code>PPB_NetAddress_Dev</code> resource holding the
+ * @param[in] addr A <code>PPB_NetAddress</code> resource holding the
* destination address.
* @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
* completion.
« no previous file with comments | « ppapi/api/dev/ppb_tcp_socket_dev.idl ('k') | ppapi/api/ppb_net_address.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698