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

Unified Diff: ppapi/c/dev/ppb_udp_socket_dev.h

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/c/dev/ppb_tcp_socket_dev.h ('k') | ppapi/c/ppb_net_address.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 89436ad4a4d61a6fcf8f3f375ea72d975cfa37e4..53a8c4f932d23158134d18eeddef8b35084bcbb4 100644
--- a/ppapi/c/dev/ppb_udp_socket_dev.h
+++ b/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.
*
@@ -128,8 +128,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);
/**
@@ -141,8 +140,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 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.
*
@@ -161,7 +160,7 @@ 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
+ * @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/c/dev/ppb_tcp_socket_dev.h ('k') | ppapi/c/ppb_net_address.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698