Index: ppapi/tests/test_network_monitor.h |
diff --git a/ppapi/tests/test_network_monitor_private.h b/ppapi/tests/test_network_monitor.h |
similarity index 60% |
rename from ppapi/tests/test_network_monitor_private.h |
rename to ppapi/tests/test_network_monitor.h |
index de5c1150c20c48122c95b2b7b2563edc76f30597..13745c87b6539a8b6594288bdcae6eea1d1a39e8 100644 |
--- a/ppapi/tests/test_network_monitor_private.h |
+++ b/ppapi/tests/test_network_monitor.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef PAPPI_TESTS_TEST_NETWORK_MONITOR_PRIVATE_H_ |
-#define PAPPI_TESTS_TEST_NETWORK_MONITOR_PRIVATE_H_ |
+#ifndef PAPPI_TESTS_TEST_NETWORK_MONITOR_H_ |
+#define PAPPI_TESTS_TEST_NETWORK_MONITOR_H_ |
#include <string> |
@@ -11,12 +11,12 @@ |
#include "ppapi/tests/test_case.h" |
namespace pp { |
-class NetworkListPrivate; |
+class NetworkList; |
} // namespace pp |
-class TestNetworkMonitorPrivate : public TestCase { |
+class TestNetworkMonitor : public TestCase { |
public: |
- explicit TestNetworkMonitorPrivate(TestingInstance* instance); |
+ explicit TestNetworkMonitor(TestingInstance* instance); |
// TestCase implementation. |
virtual bool Init(); |
@@ -28,8 +28,8 @@ class TestNetworkMonitorPrivate : public TestCase { |
std::string TestDeleteInCallback(); |
std::string VerifyNetworkListResource(PP_Resource network_resource); |
- std::string VerifyNetworkList(const pp::NetworkListPrivate& network_list); |
+ std::string VerifyNetworkList(const pp::NetworkList& network_list); |
}; |
-#endif // PAPPI_TESTS_TEST_NETWORK_MONITOR_PRIVATE_H_ |
+#endif // PAPPI_TESTS_TEST_NETWORK_MONITOR_H_ |