Index: ppapi/tests/test_core.cc |
diff --git a/ppapi/tests/test_core.cc b/ppapi/tests/test_core.cc |
index 82f93613211c71917103587c3e8db84cc7e06add..3b5f4e47bc7d6cab51fa354a8c9945beadcfcc90 100644 |
--- a/ppapi/tests/test_core.cc |
+++ b/ppapi/tests/test_core.cc |
@@ -4,28 +4,11 @@ |
#include "ppapi/tests/test_core.h" |
-#if defined(_MSC_VER) |
-#include <windows.h> |
-#else |
-#include <unistd.h> |
-#endif |
- |
#include "ppapi/cpp/core.h" |
#include "ppapi/cpp/module.h" |
+#include "ppapi/tests/test_utils.h" |
#include "ppapi/tests/testing_instance.h" |
-namespace { |
- |
-void PlatformSleep(int duration_ms) { |
-#if defined(_MSC_VER) |
- ::Sleep(duration_ms); |
-#else |
- usleep(duration_ms * 1000); |
-#endif |
-} |
- |
-} // namespace |
- |
REGISTER_TEST_CASE(Core); |
bool TestCore::Init() { |