OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "cc/layer_tree_host_impl.h" | 7 #include "cc/layer_tree_host_impl.h" |
8 | 8 |
9 #include "CCDelegatedRendererLayerImpl.h" | |
10 #include "base/command_line.h" | 9 #include "base/command_line.h" |
11 #include "base/hash_tables.h" | 10 #include "base/hash_tables.h" |
| 11 #include "cc/delegated_renderer_layer_impl.h" |
12 #include "cc/gl_renderer.h" | 12 #include "cc/gl_renderer.h" |
13 #include "cc/heads_up_display_layer_impl.h" | 13 #include "cc/heads_up_display_layer_impl.h" |
14 #include "cc/io_surface_layer_impl.h" | 14 #include "cc/io_surface_layer_impl.h" |
15 #include "cc/layer_impl.h" | 15 #include "cc/layer_impl.h" |
16 #include "cc/layer_tiling_data.h" | 16 #include "cc/layer_tiling_data.h" |
17 #include "cc/quad_sink.h" | 17 #include "cc/quad_sink.h" |
18 #include "cc/render_pass_draw_quad.h" | 18 #include "cc/render_pass_draw_quad.h" |
19 #include "cc/scrollbar_geometry_fixed_thumb.h" | 19 #include "cc/scrollbar_geometry_fixed_thumb.h" |
20 #include "cc/scrollbar_layer_impl.h" | 20 #include "cc/scrollbar_layer_impl.h" |
21 #include "cc/settings.h" | 21 #include "cc/settings.h" |
(...skipping 4353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4375 verifyRenderPassTestData(removeRenderPassesCases[testCaseIndex], testDat
a); | 4375 verifyRenderPassTestData(removeRenderPassesCases[testCaseIndex], testDat
a); |
4376 testCaseIndex++; | 4376 testCaseIndex++; |
4377 } | 4377 } |
4378 } | 4378 } |
4379 | 4379 |
4380 INSTANTIATE_TEST_CASE_P(LayerTreeHostImplTests, | 4380 INSTANTIATE_TEST_CASE_P(LayerTreeHostImplTests, |
4381 LayerTreeHostImplTest, | 4381 LayerTreeHostImplTest, |
4382 ::testing::Values(false, true)); | 4382 ::testing::Values(false, true)); |
4383 | 4383 |
4384 } // namespace | 4384 } // namespace |
OLD | NEW |