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

Unified Diff: ppapi/c/private/ppb_net_address_private.h

Issue 17615004: Add "PRIVATE" to the enum names of some private Pepper networking APIs: (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/private/ppb_host_resolver_private.h ('k') | ppapi/c/private/ppb_tcp_socket_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/private/ppb_net_address_private.h
diff --git a/ppapi/c/private/ppb_net_address_private.h b/ppapi/c/private/ppb_net_address_private.h
index 2ae1366697184409a99578776240e71d8f6eb032..82f6e4557e9f2a410ff75afe9cb2bfcedc77d5c4 100644
--- a/ppapi/c/private/ppb_net_address_private.h
+++ b/ppapi/c/private/ppb_net_address_private.h
@@ -4,7 +4,7 @@
*/
/* From private/ppb_net_address_private.idl,
- * modified Sat Oct 20 12:39:54 2012.
+ * modified Mon Jun 24 09:52:39 2013.
*/
#ifndef PPAPI_C_PRIVATE_PPB_NET_ADDRESS_PRIVATE_H_
@@ -35,15 +35,15 @@ typedef enum {
/**
* The address family is unspecified.
*/
- PP_NETADDRESSFAMILY_UNSPECIFIED = 0,
+ PP_NETADDRESSFAMILY_PRIVATE_UNSPECIFIED = 0,
/**
* The Internet Protocol version 4 (IPv4) address family.
*/
- PP_NETADDRESSFAMILY_IPV4 = 1,
+ PP_NETADDRESSFAMILY_PRIVATE_IPV4 = 1,
/**
* The Internet Protocol version 6 (IPv6) address family.
*/
- PP_NETADDRESSFAMILY_IPV6 = 2
+ PP_NETADDRESSFAMILY_PRIVATE_IPV6 = 2
} PP_NetAddressFamily_Private;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_NetAddressFamily_Private, 4);
/**
« no previous file with comments | « ppapi/c/private/ppb_host_resolver_private.h ('k') | ppapi/c/private/ppb_tcp_socket_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698