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

Unified Diff: ppapi/proxy/net_address_resource.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/interface_list.cc ('k') | ppapi/proxy/net_address_resource.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/net_address_resource.h
diff --git a/ppapi/proxy/net_address_resource.h b/ppapi/proxy/net_address_resource.h
index 9c504924428685ed349a63c7ed7c015db76c32e0..4d236049f910014fdb52675be9b8aa1f84120a63 100644
--- a/ppapi/proxy/net_address_resource.h
+++ b/ppapi/proxy/net_address_resource.h
@@ -20,10 +20,10 @@ class PPAPI_PROXY_EXPORT NetAddressResource : public PluginResource,
public:
NetAddressResource(Connection connection,
PP_Instance instance,
- const PP_NetAddress_IPv4_Dev& ipv4_addr);
+ const PP_NetAddress_IPv4& ipv4_addr);
NetAddressResource(Connection connection,
PP_Instance instance,
- const PP_NetAddress_IPv6_Dev& ipv6_addr);
+ const PP_NetAddress_IPv6& ipv6_addr);
NetAddressResource(Connection connection,
PP_Instance instance,
const PP_NetAddress_Private& private_addr);
@@ -34,16 +34,16 @@ class PPAPI_PROXY_EXPORT NetAddressResource : public PluginResource,
virtual thunk::PPB_NetAddress_API* AsPPB_NetAddress_API() OVERRIDE;
// PPB_NetAddress_API implementation.
- virtual PP_NetAddress_Family_Dev GetFamily() OVERRIDE;
+ virtual PP_NetAddress_Family GetFamily() OVERRIDE;
virtual PP_Var DescribeAsString(PP_Bool include_port) OVERRIDE;
virtual PP_Bool DescribeAsIPv4Address(
- PP_NetAddress_IPv4_Dev* ipv4_addr) OVERRIDE;
+ PP_NetAddress_IPv4* ipv4_addr) OVERRIDE;
virtual PP_Bool DescribeAsIPv6Address(
- PP_NetAddress_IPv6_Dev* ipv6_addr) OVERRIDE;
+ PP_NetAddress_IPv6* ipv6_addr) OVERRIDE;
virtual const PP_NetAddress_Private& GetNetAddressPrivate() OVERRIDE;
private:
- // TODO(yzshen): Refactor the code so that PPB_NetAddress_Dev resource doesn't
+ // TODO(yzshen): Refactor the code so that PPB_NetAddress resource doesn't
// use PP_NetAddress_Private as storage type.
PP_NetAddress_Private address_;
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/net_address_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698