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

Unified Diff: ppapi/tests/test_graphics_3d.h

Issue 7800003: Added an empty test suite for Graphics3D. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
« no previous file with comments | « ppapi/ppapi_tests.gypi ('k') | ppapi/tests/test_graphics_3d.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_graphics_3d.h
===================================================================
--- ppapi/tests/test_graphics_3d.h (revision 0)
+++ ppapi/tests/test_graphics_3d.h (revision 0)
@@ -0,0 +1,27 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PAPPI_TESTS_TEST_GRAPHICS_3D_H_
+#define PAPPI_TESTS_TEST_GRAPHICS_3D_H_
+
+#include "ppapi/tests/test_case.h"
+
+struct PPB_Graphics3D_Dev;
+struct PPB_OpenGLES2_Dev;
+
+class TestGraphics3D : public TestCase {
+ public:
+ TestGraphics3D(TestingInstance* instance) : TestCase(instance) {}
+
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTest();
+
+ private:
+ // Used by the tests that access the C API directly.
+ const PPB_Graphics3D_Dev* graphics_3d_;
+ const PPB_OpenGLES2_Dev* opengl_es2_;
+};
+
+#endif // PAPPI_TESTS_TEST_GRAPHICS_3D_H_
Property changes on: ppapi\tests\test_graphics_3d.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « ppapi/ppapi_tests.gypi ('k') | ppapi/tests/test_graphics_3d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698