Index: ppapi/cpp/private/network_list_private.h |
diff --git a/ppapi/cpp/private/network_list_private.h b/ppapi/cpp/private/network_list_private.h |
index 31cd9b598b8199b05f663e137a1d3c6b46fa44e6..ae7d61d5800ca5385d7430c8853fdd0f80fd68e8 100644 |
--- a/ppapi/cpp/private/network_list_private.h |
+++ b/ppapi/cpp/private/network_list_private.h |
@@ -14,6 +14,8 @@ |
namespace pp { |
+class NetAddress; |
+ |
class NetworkListPrivate : public Resource { |
public: |
NetworkListPrivate(); |
@@ -42,7 +44,7 @@ class NetworkListPrivate : public Resource { |
/// specified <code>index</code> and stores them in |
/// <code>addresses</code>. |
void GetIpAddresses(uint32_t index, |
yzshen1
2013/09/03 17:47:32
Shall we return an int32_t to indicate errors?
Sergey Ulanov
2013/09/03 23:42:54
Done.
|
- std::vector<PP_NetAddress_Private>* addresses) const; |
+ std::vector<NetAddress>* addresses) const; |
/// @return Returns the display name for the network interface with |
/// the specified <code>index</code>. |