| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "cc/test/layer_tree_pixel_resource_test.h" | 5 #include "cc/test/layer_tree_pixel_resource_test.h" |
| 6 | 6 |
| 7 #include "cc/layers/layer.h" | 7 #include "cc/layers/layer.h" |
| 8 #include "cc/output/compositor_frame_sink.h" |
| 8 #include "cc/raster/bitmap_raster_buffer_provider.h" | 9 #include "cc/raster/bitmap_raster_buffer_provider.h" |
| 9 #include "cc/raster/gpu_raster_buffer_provider.h" | 10 #include "cc/raster/gpu_raster_buffer_provider.h" |
| 10 #include "cc/raster/one_copy_raster_buffer_provider.h" | 11 #include "cc/raster/one_copy_raster_buffer_provider.h" |
| 11 #include "cc/raster/raster_buffer_provider.h" | 12 #include "cc/raster/raster_buffer_provider.h" |
| 12 #include "cc/raster/zero_copy_raster_buffer_provider.h" | 13 #include "cc/raster/zero_copy_raster_buffer_provider.h" |
| 13 #include "cc/resources/resource_pool.h" | 14 #include "cc/resources/resource_pool.h" |
| 14 #include "gpu/GLES2/gl2extchromium.h" | 15 #include "gpu/GLES2/gl2extchromium.h" |
| 15 | 16 |
| 16 namespace cc { | 17 namespace cc { |
| 17 | 18 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 if (!IsTestCaseSupported(test_case_)) | 171 if (!IsTestCaseSupported(test_case_)) |
| 171 return; | 172 return; |
| 172 RunPixelTest(test_type_, content_root, file_name); | 173 RunPixelTest(test_type_, content_root, file_name); |
| 173 } | 174 } |
| 174 | 175 |
| 175 ParameterizedPixelResourceTest::ParameterizedPixelResourceTest() | 176 ParameterizedPixelResourceTest::ParameterizedPixelResourceTest() |
| 176 : LayerTreeHostPixelResourceTest(GetParam()) { | 177 : LayerTreeHostPixelResourceTest(GetParam()) { |
| 177 } | 178 } |
| 178 | 179 |
| 179 } // namespace cc | 180 } // namespace cc |
| OLD | NEW |