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/layer_tree_host.h" | 5 #include "cc/layer_tree_host.h" |
6 | 6 |
7 #include "base/synchronization/lock.h" | 7 #include "base/synchronization/lock.h" |
8 #include "cc/content_layer.h" | 8 #include "cc/content_layer.h" |
9 #include "cc/content_layer_client.h" | 9 #include "cc/content_layer_client.h" |
10 #include "cc/frame_rate_controller.h" | 10 #include "cc/frame_rate_controller.h" |
11 #include "cc/layer_impl.h" | 11 #include "cc/layer_impl.h" |
12 #include "cc/layer_tree_host_impl.h" | 12 #include "cc/layer_tree_host_impl.h" |
13 #include "cc/layer_tree_impl.h" | 13 #include "cc/layer_tree_impl.h" |
14 #include "cc/output_surface.h" | 14 #include "cc/output/output_surface.h" |
15 #include "cc/picture_layer.h" | 15 #include "cc/picture_layer.h" |
16 #include "cc/prioritized_resource.h" | 16 #include "cc/prioritized_resource.h" |
17 #include "cc/prioritized_resource_manager.h" | 17 #include "cc/prioritized_resource_manager.h" |
18 #include "cc/resource_update_queue.h" | 18 #include "cc/resource_update_queue.h" |
19 #include "cc/scrollbar_layer.h" | 19 #include "cc/scrollbar_layer.h" |
20 #include "cc/single_thread_proxy.h" | 20 #include "cc/single_thread_proxy.h" |
21 #include "cc/test/fake_content_layer.h" | 21 #include "cc/test/fake_content_layer.h" |
22 #include "cc/test/fake_content_layer_client.h" | 22 #include "cc/test/fake_content_layer_client.h" |
23 #include "cc/test/fake_layer_tree_host_client.h" | 23 #include "cc/test/fake_layer_tree_host_client.h" |
24 #include "cc/test/fake_output_surface.h" | 24 #include "cc/test/fake_output_surface.h" |
(...skipping 2338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2363 private: | 2363 private: |
2364 FakeContentLayerClient m_client; | 2364 FakeContentLayerClient m_client; |
2365 scoped_refptr<ContentLayer> m_rootLayer; | 2365 scoped_refptr<ContentLayer> m_rootLayer; |
2366 int m_numCommits; | 2366 int m_numCommits; |
2367 }; | 2367 }; |
2368 | 2368 |
2369 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPinchZoomScrollbarNewRootLayer) | 2369 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestPinchZoomScrollbarNewRootLayer) |
2370 | 2370 |
2371 } // namespace | 2371 } // namespace |
2372 } // namespace cc | 2372 } // namespace cc |
OLD | NEW |