Index: ppapi/tests/test_console.h |
diff --git a/ppapi/tests/test_empty.h b/ppapi/tests/test_console.h |
similarity index 54% |
copy from ppapi/tests/test_empty.h |
copy to ppapi/tests/test_console.h |
index 3c2ca6ec42e0e9c88a0e4f79c947b9344d8a8d57..1b2f55d9bc08c814acfda1ce6b46f3d834138558 100644 |
--- a/ppapi/tests/test_empty.h |
+++ b/ppapi/tests/test_console.h |
@@ -2,23 +2,26 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef PPAPI_TESTS_TEST_EMPTY_H_ |
-#define PPAPI_TESTS_TEST_EMPTY_H_ |
+#ifndef PPAPI_TESTS_TEST_CONSOLE_H_ |
+#define PPAPI_TESTS_TEST_CONSOLE_H_ |
#include <string> |
+#include "ppapi/c/ppb_console.h" |
#include "ppapi/tests/test_case.h" |
-class TestEmpty : public TestCase { |
+class TestConsole : public TestCase { |
public: |
- explicit TestEmpty(TestingInstance* instance); |
+ explicit TestConsole(TestingInstance* instance); |
// TestCase implementation. |
virtual bool Init(); |
virtual void RunTests(const std::string& filter); |
private: |
- std::string TestNaClLoad(); |
+ std::string TestSmoke(); |
+ |
+ const PPB_Console* console_interface_; |
}; |
-#endif // PPAPI_TESTS_TEST_EMPTY_H_ |
+#endif // PPAPI_TESTS_TEST_CONSOLE_H_ |