| 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 "cc/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "cc/layers/solid_color_layer.h" | 25 #include "cc/layers/solid_color_layer.h" |
| 26 #include "cc/layers/video_layer.h" | 26 #include "cc/layers/video_layer.h" |
| 27 #include "cc/output/begin_frame_args.h" | 27 #include "cc/output/begin_frame_args.h" |
| 28 #include "cc/output/compositor_frame_ack.h" | 28 #include "cc/output/compositor_frame_ack.h" |
| 29 #include "cc/output/copy_output_request.h" | 29 #include "cc/output/copy_output_request.h" |
| 30 #include "cc/output/copy_output_result.h" | 30 #include "cc/output/copy_output_result.h" |
| 31 #include "cc/output/output_surface.h" | 31 #include "cc/output/output_surface.h" |
| 32 #include "cc/output/swap_promise.h" | 32 #include "cc/output/swap_promise.h" |
| 33 #include "cc/playback/display_item_list_settings.h" | 33 #include "cc/playback/display_item_list_settings.h" |
| 34 #include "cc/quads/draw_quad.h" | 34 #include "cc/quads/draw_quad.h" |
| 35 #include "cc/quads/io_surface_draw_quad.h" | |
| 36 #include "cc/quads/render_pass_draw_quad.h" | 35 #include "cc/quads/render_pass_draw_quad.h" |
| 37 #include "cc/quads/tile_draw_quad.h" | 36 #include "cc/quads/tile_draw_quad.h" |
| 38 #include "cc/test/fake_content_layer_client.h" | 37 #include "cc/test/fake_content_layer_client.h" |
| 39 #include "cc/test/fake_layer_tree_host_client.h" | 38 #include "cc/test/fake_layer_tree_host_client.h" |
| 40 #include "cc/test/fake_output_surface.h" | 39 #include "cc/test/fake_output_surface.h" |
| 41 #include "cc/test/fake_painted_scrollbar_layer.h" | 40 #include "cc/test/fake_painted_scrollbar_layer.h" |
| 42 #include "cc/test/fake_picture_layer.h" | 41 #include "cc/test/fake_picture_layer.h" |
| 43 #include "cc/test/fake_picture_layer_impl.h" | 42 #include "cc/test/fake_picture_layer_impl.h" |
| 44 #include "cc/test/fake_proxy.h" | 43 #include "cc/test/fake_proxy.h" |
| 45 #include "cc/test/fake_recording_source.h" | 44 #include "cc/test/fake_recording_source.h" |
| (...skipping 6553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6599 EndTest(); | 6598 EndTest(); |
| 6600 } | 6599 } |
| 6601 | 6600 |
| 6602 void AfterTest() override {} | 6601 void AfterTest() override {} |
| 6603 }; | 6602 }; |
| 6604 | 6603 |
| 6605 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); | 6604 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPaintedDeviceScaleFactor); |
| 6606 | 6605 |
| 6607 } // namespace | 6606 } // namespace |
| 6608 } // namespace cc | 6607 } // namespace cc |
| OLD | NEW |