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

Unified Diff: ppapi/cpp/private/network_list_private.h

Issue 23806003: Use PP_ArrayOutput and PPB_NetAddress in PPB_NetworkList_Private.. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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
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>.

Powered by Google App Engine
This is Rietveld 408576698