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

Unified Diff: ppapi/tests/test_console.h

Issue 11416214: PPAPI: Move PPB_Console out of dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 8 years 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/all_c_includes.h ('k') | ppapi/tests/test_console.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « ppapi/tests/all_c_includes.h ('k') | ppapi/tests/test_console.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698