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

Unified Diff: ppapi/tests/test_host_resolver_private.cc

Issue 17615004: Add "PRIVATE" to the enum names of some private Pepper networking APIs: (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/tests/test_host_resolver_private.cc
diff --git a/ppapi/tests/test_host_resolver_private.cc b/ppapi/tests/test_host_resolver_private.cc
index 72153afbc059e3885c64d240b3cbfe75326b65f9..88429eddf24cbb01d73a5245fb62ec7a4f27dc9f 100644
--- a/ppapi/tests/test_host_resolver_private.cc
+++ b/ppapi/tests/test_host_resolver_private.cc
@@ -171,14 +171,14 @@ std::string TestHostResolverPrivate::ParametrizedTestResolve(
std::string TestHostResolverPrivate::TestResolve() {
PP_HostResolver_Private_Hint hint;
- hint.family = PP_NETADDRESSFAMILY_UNSPECIFIED;
- hint.flags = PP_HOST_RESOLVER_FLAGS_CANONNAME;
+ hint.family = PP_NETADDRESSFAMILY_PRIVATE_UNSPECIFIED;
+ hint.flags = PP_HOST_RESOLVER_PRIVATE_FLAGS_CANONNAME;
return ParametrizedTestResolve(hint);
}
std::string TestHostResolverPrivate::TestResolveIPv4() {
PP_HostResolver_Private_Hint hint;
- hint.family = PP_NETADDRESSFAMILY_IPV4;
- hint.flags = PP_HOST_RESOLVER_FLAGS_CANONNAME;
+ hint.family = PP_NETADDRESSFAMILY_PRIVATE_IPV4;
+ hint.flags = PP_HOST_RESOLVER_PRIVATE_FLAGS_CANONNAME;
return ParametrizedTestResolve(hint);
}
« no previous file with comments | « ppapi/shared_impl/private/tcp_socket_private_impl.cc ('k') | ppapi/tests/test_host_resolver_private_disallowed.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698