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

Unified Diff: ppapi/cpp/dev/host_resolver_dev.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
Index: ppapi/cpp/dev/host_resolver_dev.h
diff --git a/ppapi/cpp/dev/host_resolver_dev.h b/ppapi/cpp/dev/host_resolver_dev.h
index 03a866ad7d42731af5113906abcc965fad3ee34d..123044bf6ff02b2748bc4ed4b6e7b184eb266ba7 100644
--- a/ppapi/cpp/dev/host_resolver_dev.h
+++ b/ppapi/cpp/dev/host_resolver_dev.h
@@ -7,7 +7,7 @@
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/dev/ppb_host_resolver_dev.h"
-#include "ppapi/cpp/dev/net_address_dev.h"
+#include "ppapi/cpp/net_address.h"
#include "ppapi/cpp/pass_ref.h"
#include "ppapi/cpp/resource.h"
#include "ppapi/cpp/var.h"
@@ -103,11 +103,11 @@ class HostResolver_Dev : public Resource {
///
/// @param[in] index An index indicating which address to return.
///
- /// @return A <code>NetAddress_Dev</code> object. The object will be null
+ /// @return A <code>NetAddress</code> object. The object will be null
/// (i.e., is_null() returns true) if there is a pending
/// <code>Resolve()</code> call or the previous <code>Resolve()</code> call
/// failed, or the specified index is out of range.
- NetAddress_Dev GetNetAddress(uint32_t index) const;
+ NetAddress GetNetAddress(uint32_t index) const;
};
} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698