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

Unified Diff: ppapi/shared_impl/private/net_address_private_impl.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/proxy/resource_creation_proxy.cc ('k') | ppapi/shared_impl/private/net_address_private_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/private/net_address_private_impl.h
diff --git a/ppapi/shared_impl/private/net_address_private_impl.h b/ppapi/shared_impl/private/net_address_private_impl.h
index fdc9577e6eb55b3b1a530d6720db2031654b40f8..a8ba0592956bfe58c7b9c65f3fdac9e63dc0f532 100644
--- a/ppapi/shared_impl/private/net_address_private_impl.h
+++ b/ppapi/shared_impl/private/net_address_private_impl.h
@@ -9,8 +9,8 @@
#include <vector>
#include "base/basictypes.h"
-#include "ppapi/c/dev/ppb_net_address_dev.h"
#include "ppapi/c/pp_stdint.h"
+#include "ppapi/c/ppb_net_address.h"
#include "ppapi/shared_impl/ppapi_shared_export.h"
struct PP_NetAddress_Private;
@@ -37,24 +37,24 @@ class PPAPI_SHARED_EXPORT NetAddressPrivateImpl {
static std::string DescribeNetAddress(const PP_NetAddress_Private& addr,
bool include_port);
- // Conversion methods to make PPB_NetAddress_Dev resource work with
+ // Conversion methods to make PPB_NetAddress resource work with
// PP_NetAddress_Private.
- // TODO(yzshen): Remove them once PPB_NetAddress_Dev resource doesn't use
+ // TODO(yzshen): Remove them once PPB_NetAddress resource doesn't use
// PP_NetAddress_Private as storage type.
static void CreateNetAddressPrivateFromIPv4Address(
- const PP_NetAddress_IPv4_Dev& ipv4_addr,
+ const PP_NetAddress_IPv4& ipv4_addr,
PP_NetAddress_Private* addr);
static void CreateNetAddressPrivateFromIPv6Address(
- const PP_NetAddress_IPv6_Dev& ipv6_addr,
+ const PP_NetAddress_IPv6& ipv6_addr,
PP_NetAddress_Private* addr);
- static PP_NetAddress_Family_Dev GetFamilyFromNetAddressPrivate(
+ static PP_NetAddress_Family GetFamilyFromNetAddressPrivate(
const PP_NetAddress_Private& addr);
static bool DescribeNetAddressPrivateAsIPv4Address(
const PP_NetAddress_Private& addr,
- PP_NetAddress_IPv4_Dev* ipv4_addr);
+ PP_NetAddress_IPv4* ipv4_addr);
static bool DescribeNetAddressPrivateAsIPv6Address(
const PP_NetAddress_Private& addr,
- PP_NetAddress_IPv6_Dev* ipv6_addr);
+ PP_NetAddress_IPv6* ipv6_addr);
static const PP_NetAddress_Private kInvalidNetAddress;
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.cc ('k') | ppapi/shared_impl/private/net_address_private_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698