Index: ppapi/c/dev/ppb_udp_socket_dev.h |
diff --git a/ppapi/c/dev/ppb_udp_socket_dev.h b/ppapi/c/dev/ppb_udp_socket_dev.h |
index 5c2d317da2a2be2ba469043dae034bc2b8ed090f..212263a78b46427add805c04dde1645034a9f994 100644 |
--- a/ppapi/c/dev/ppb_udp_socket_dev.h |
+++ b/ppapi/c/dev/ppb_udp_socket_dev.h |
@@ -3,7 +3,7 @@ |
* found in the LICENSE file. |
*/ |
-/* From dev/ppb_udp_socket_dev.idl modified Wed Jun 19 23:51:27 2013. */ |
+/* From dev/ppb_udp_socket_dev.idl modified Thu Jun 20 11:03:32 2013. */ |
#ifndef PPAPI_C_DEV_PPB_UDP_SOCKET_DEV_H_ |
#define PPAPI_C_DEV_PPB_UDP_SOCKET_DEV_H_ |
@@ -110,7 +110,7 @@ struct PPB_UDPSocket_Dev_0_1 { |
* |
* @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. |
* |
@@ -129,8 +129,7 @@ struct PPB_UDPSocket_Dev_0_1 { |
* @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)(PP_Resource udp_socket); |
/** |
@@ -142,8 +141,8 @@ struct PPB_UDPSocket_Dev_0_1 { |
* @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 read. |
- * @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. |
* |
@@ -163,8 +162,8 @@ struct PPB_UDPSocket_Dev_0_1 { |
* 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 |
- * target address. |
+ * @param[in] addr A <code>PPB_NetAddress</code> resource holding the target |
+ * address. |
* @param[in] callback A <code>PP_CompletionCallback</code> to be called upon |
* completion. |
* |