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

Unified Diff: ppapi/tests/test_network_monitor.h

Issue 23450012: Make NetworkList and NetworkMonitor APIs public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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_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_

Powered by Google App Engine
This is Rietveld 408576698