| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_TESTS_TEST_GRAPHICS_2D_H_ | 5 #ifndef PPAPI_TESTS_TEST_GRAPHICS_2D_H_ |
| 6 #define PPAPI_TESTS_TEST_GRAPHICS_2D_H_ | 6 #define PPAPI_TESTS_TEST_GRAPHICS_2D_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ppapi/c/pp_stdint.h" | 10 #include "ppapi/c/pp_stdint.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 std::string TestInvalidResource(); | 72 std::string TestInvalidResource(); |
| 73 std::string TestInvalidSize(); | 73 std::string TestInvalidSize(); |
| 74 std::string TestHumongous(); | 74 std::string TestHumongous(); |
| 75 std::string TestInitToZero(); | 75 std::string TestInitToZero(); |
| 76 std::string TestDescribe(); | 76 std::string TestDescribe(); |
| 77 std::string TestPaint(); | 77 std::string TestPaint(); |
| 78 std::string TestScroll(); | 78 std::string TestScroll(); |
| 79 std::string TestReplace(); | 79 std::string TestReplace(); |
| 80 std::string TestFlush(); | 80 std::string TestFlush(); |
| 81 std::string TestDev(); |
| 81 | 82 |
| 82 // Used by the tests that access the C API directly. | 83 // Used by the tests that access the C API directly. |
| 83 const PPB_Graphics2D* graphics_2d_interface_; | 84 const PPB_Graphics2D* graphics_2d_interface_; |
| 84 const PPB_ImageData* image_data_interface_; | 85 const PPB_ImageData* image_data_interface_; |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 #endif // PPAPI_TESTS_TEST_GRAPHICS_2D_H_ | 88 #endif // PPAPI_TESTS_TEST_GRAPHICS_2D_H_ |
| OLD | NEW |