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

Unified Diff: ppapi/tests/test_network_monitor_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
« no previous file with comments | « ppapi/tests/test_net_address_private.cc ('k') | ppapi/tests/test_tcp_socket_private.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_network_monitor_private.cc
diff --git a/ppapi/tests/test_network_monitor_private.cc b/ppapi/tests/test_network_monitor_private.cc
index dbe8683199414da3564c62983a534dfd7834ec63..b2114dab6853fd78a00e05f037b4f41ea5473a7e 100644
--- a/ppapi/tests/test_network_monitor_private.cc
+++ b/ppapi/tests/test_network_monitor_private.cc
@@ -100,8 +100,8 @@ std::string TestNetworkMonitorPrivate::VerifyNetworkList(
PP_NetAddressFamily_Private family =
pp::NetAddressPrivate::GetFamily(addresses[i]);
- ASSERT_TRUE(family == PP_NETADDRESSFAMILY_IPV4 ||
- family == PP_NETADDRESSFAMILY_IPV6);
+ ASSERT_TRUE(family == PP_NETADDRESSFAMILY_PRIVATE_IPV4 ||
+ family == PP_NETADDRESSFAMILY_PRIVATE_IPV6);
char ip[16] = { 0 };
ASSERT_TRUE(pp::NetAddressPrivate::GetAddress(
« no previous file with comments | « ppapi/tests/test_net_address_private.cc ('k') | ppapi/tests/test_tcp_socket_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698