| 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 <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "cc/output/copy_output_request.h" | 25 #include "cc/output/copy_output_request.h" |
| 26 #include "cc/output/copy_output_result.h" | 26 #include "cc/output/copy_output_result.h" |
| 27 #include "cc/output/output_surface.h" | 27 #include "cc/output/output_surface.h" |
| 28 #include "cc/output/swap_promise.h" | 28 #include "cc/output/swap_promise.h" |
| 29 #include "cc/quads/draw_quad.h" | 29 #include "cc/quads/draw_quad.h" |
| 30 #include "cc/quads/io_surface_draw_quad.h" | 30 #include "cc/quads/io_surface_draw_quad.h" |
| 31 #include "cc/quads/render_pass_draw_quad.h" | 31 #include "cc/quads/render_pass_draw_quad.h" |
| 32 #include "cc/quads/tile_draw_quad.h" | 32 #include "cc/quads/tile_draw_quad.h" |
| 33 #include "cc/resources/prioritized_resource.h" | 33 #include "cc/resources/prioritized_resource.h" |
| 34 #include "cc/resources/prioritized_resource_manager.h" | 34 #include "cc/resources/prioritized_resource_manager.h" |
| 35 #include "cc/resources/resource_update_queue.h" | |
| 36 #include "cc/test/fake_content_layer_client.h" | 35 #include "cc/test/fake_content_layer_client.h" |
| 37 #include "cc/test/fake_layer_tree_host_client.h" | 36 #include "cc/test/fake_layer_tree_host_client.h" |
| 38 #include "cc/test/fake_output_surface.h" | 37 #include "cc/test/fake_output_surface.h" |
| 39 #include "cc/test/fake_painted_scrollbar_layer.h" | 38 #include "cc/test/fake_painted_scrollbar_layer.h" |
| 40 #include "cc/test/fake_picture_layer.h" | 39 #include "cc/test/fake_picture_layer.h" |
| 41 #include "cc/test/fake_picture_layer_impl.h" | 40 #include "cc/test/fake_picture_layer_impl.h" |
| 42 #include "cc/test/fake_picture_pile.h" | 41 #include "cc/test/fake_picture_pile.h" |
| 43 #include "cc/test/fake_proxy.h" | 42 #include "cc/test/fake_proxy.h" |
| 44 #include "cc/test/fake_scoped_ui_resource.h" | 43 #include "cc/test/fake_scoped_ui_resource.h" |
| 45 #include "cc/test/fake_video_frame_provider.h" | 44 #include "cc/test/fake_video_frame_provider.h" |
| (...skipping 5840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5886 | 5885 |
| 5887 scoped_refptr<FakePictureLayer> content_child_layer_; | 5886 scoped_refptr<FakePictureLayer> content_child_layer_; |
| 5888 FakeContentLayerClient client_; | 5887 FakeContentLayerClient client_; |
| 5889 }; | 5888 }; |
| 5890 | 5889 |
| 5891 SINGLE_AND_MULTI_THREAD_TEST_F( | 5890 SINGLE_AND_MULTI_THREAD_TEST_F( |
| 5892 LayerTreeTestReflectionMaskLayerForSurfaceWithUnclippedChild); | 5891 LayerTreeTestReflectionMaskLayerForSurfaceWithUnclippedChild); |
| 5893 | 5892 |
| 5894 } // namespace | 5893 } // namespace |
| 5895 } // namespace cc | 5894 } // namespace cc |
| OLD | NEW |