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" | 9 #include "CCDelegatedRendererLayerImpl.h" |
10 #include "CCHeadsUpDisplayLayerImpl.h" | |
11 #include "CCIOSurfaceLayerImpl.h" | |
12 #include "CCLayerImpl.h" | |
13 #include "CCLayerTilingData.h" | |
14 #include "base/command_line.h" | 10 #include "base/command_line.h" |
15 #include "base/hash_tables.h" | 11 #include "base/hash_tables.h" |
16 #include "cc/gl_renderer.h" | 12 #include "cc/gl_renderer.h" |
| 13 #include "cc/heads_up_display_layer_impl.h" |
| 14 #include "cc/io_surface_layer_impl.h" |
| 15 #include "cc/layer_impl.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" |
22 #include "cc/single_thread_proxy.h" | 22 #include "cc/single_thread_proxy.h" |
23 #include "cc/solid_color_draw_quad.h" | 23 #include "cc/solid_color_draw_quad.h" |
24 #include "cc/test/animation_test_common.h" | 24 #include "cc/test/animation_test_common.h" |
25 #include "cc/test/fake_web_compositor_output_surface.h" | 25 #include "cc/test/fake_web_compositor_output_surface.h" |
26 #include "cc/test/fake_web_graphics_context_3d.h" | 26 #include "cc/test/fake_web_graphics_context_3d.h" |
(...skipping 4348 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(CCLayerTreeHostImplTests, | 4380 INSTANTIATE_TEST_CASE_P(CCLayerTreeHostImplTests, |
4381 CCLayerTreeHostImplTest, | 4381 CCLayerTreeHostImplTest, |
4382 ::testing::Values(false, true)); | 4382 ::testing::Values(false, true)); |
4383 | 4383 |
4384 } // namespace | 4384 } // namespace |
OLD | NEW |