| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include <stdint.h> | 5 #include <stdint.h> |
| 6 | 6 |
| 7 #include <memory> |
| 8 |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 8 #include "ui/gfx/buffer_types.h" | 10 #include "ui/gfx/buffer_types.h" |
| 9 #include "ui/gl/test/gl_image_test_template.h" | 11 #include "ui/gl/test/gl_image_test_template.h" |
| 10 #include "ui/ozone/gl/gl_image_ozone_native_pixmap.h" | 12 #include "ui/ozone/gl/gl_image_ozone_native_pixmap.h" |
| 11 #include "ui/ozone/public/client_native_pixmap.h" | 13 #include "ui/ozone/public/client_native_pixmap.h" |
| 12 #include "ui/ozone/public/client_native_pixmap_factory.h" | 14 #include "ui/ozone/public/client_native_pixmap_factory.h" |
| 13 #include "ui/ozone/public/ozone_platform.h" | 15 #include "ui/ozone/public/ozone_platform.h" |
| 14 #include "ui/ozone/public/surface_factory_ozone.h" | 16 #include "ui/ozone/public/surface_factory_ozone.h" |
| 15 | 17 |
| 16 namespace gl { | 18 namespace gl { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 INSTANTIATE_TYPED_TEST_CASE_P(DISABLED_GLImageOzoneNativePixmapReadWrite, | 91 INSTANTIATE_TYPED_TEST_CASE_P(DISABLED_GLImageOzoneNativePixmapReadWrite, |
| 90 GLImageTest, | 92 GLImageTest, |
| 91 GLImageReadWriteType); | 93 GLImageReadWriteType); |
| 92 | 94 |
| 93 INSTANTIATE_TYPED_TEST_CASE_P(DISABLED_GLImageOzoneNativePixmap, | 95 INSTANTIATE_TYPED_TEST_CASE_P(DISABLED_GLImageOzoneNativePixmap, |
| 94 GLImageBindTest, | 96 GLImageBindTest, |
| 95 GLImageBindTestTypes); | 97 GLImageBindTestTypes); |
| 96 | 98 |
| 97 } // namespace | 99 } // namespace |
| 98 } // namespace gl | 100 } // namespace gl |
| OLD | NEW |