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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "cc/test/fake_proxy.h" | 43 #include "cc/test/fake_proxy.h" |
44 #include "cc/test/fake_recording_source.h" | 44 #include "cc/test/fake_recording_source.h" |
45 #include "cc/test/fake_scoped_ui_resource.h" | 45 #include "cc/test/fake_scoped_ui_resource.h" |
46 #include "cc/test/fake_video_frame_provider.h" | 46 #include "cc/test/fake_video_frame_provider.h" |
47 #include "cc/test/geometry_test_utils.h" | 47 #include "cc/test/geometry_test_utils.h" |
48 #include "cc/test/layer_internals_for_test.h" | 48 #include "cc/test/layer_internals_for_test.h" |
49 #include "cc/test/layer_tree_test.h" | 49 #include "cc/test/layer_tree_test.h" |
50 #include "cc/test/render_pass_test_utils.h" | 50 #include "cc/test/render_pass_test_utils.h" |
51 #include "cc/test/skia_common.h" | 51 #include "cc/test/skia_common.h" |
52 #include "cc/test/test_compositor_frame_sink.h" | 52 #include "cc/test/test_compositor_frame_sink.h" |
53 #include "cc/test/test_shared_bitmap_manager.h" | |
54 #include "cc/test/test_web_graphics_context_3d.h" | 53 #include "cc/test/test_web_graphics_context_3d.h" |
55 #include "cc/trees/effect_node.h" | 54 #include "cc/trees/effect_node.h" |
56 #include "cc/trees/layer_tree_host_common.h" | 55 #include "cc/trees/layer_tree_host_common.h" |
57 #include "cc/trees/layer_tree_host_impl.h" | 56 #include "cc/trees/layer_tree_host_impl.h" |
58 #include "cc/trees/layer_tree_impl.h" | 57 #include "cc/trees/layer_tree_impl.h" |
59 #include "cc/trees/single_thread_proxy.h" | 58 #include "cc/trees/single_thread_proxy.h" |
60 #include "cc/trees/swap_promise_manager.h" | 59 #include "cc/trees/swap_promise_manager.h" |
61 #include "cc/trees/transform_node.h" | 60 #include "cc/trees/transform_node.h" |
62 #include "gpu/GLES2/gl2extchromium.h" | 61 #include "gpu/GLES2/gl2extchromium.h" |
63 #include "testing/gmock/include/gmock/gmock.h" | 62 #include "testing/gmock/include/gmock/gmock.h" |
(...skipping 6972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7036 EndTest(); | 7035 EndTest(); |
7037 } | 7036 } |
7038 | 7037 |
7039 void AfterTest() override {} | 7038 void AfterTest() override {} |
7040 }; | 7039 }; |
7041 | 7040 |
7042 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestSubmitFrameResources); | 7041 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestSubmitFrameResources); |
7043 | 7042 |
7044 } // namespace | 7043 } // namespace |
7045 } // namespace cc | 7044 } // namespace cc |
OLD | NEW |