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/layer_impl.h" |
10 #include "cc/layer_tree_host_impl.h" | 11 #include "cc/layer_tree_host_impl.h" |
11 #include "cc/output_surface.h" | 12 #include "cc/output_surface.h" |
12 #include "cc/single_thread_proxy.h" | 13 #include "cc/single_thread_proxy.h" |
13 #include "cc/test/fake_content_layer_client.h" | 14 #include "cc/test/fake_content_layer_client.h" |
14 #include "cc/test/fake_layer_tree_host_client.h" | 15 #include "cc/test/fake_layer_tree_host_client.h" |
15 #include "cc/test/fake_proxy.h" | 16 #include "cc/test/fake_proxy.h" |
16 #include "cc/test/fake_web_compositor_output_surface.h" | 17 #include "cc/test/fake_web_compositor_output_surface.h" |
17 #include "cc/test/geometry_test_utils.h" | 18 #include "cc/test/geometry_test_utils.h" |
18 #include "cc/test/layer_tree_test_common.h" | 19 #include "cc/test/layer_tree_test_common.h" |
19 #include "cc/test/occlusion_tracker_test_common.h" | 20 #include "cc/test/occlusion_tracker_test_common.h" |
(...skipping 3331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3351 LayerTreeSettings settings; | 3352 LayerTreeSettings settings; |
3352 settings.maxPartialTextureUpdates = 4; | 3353 settings.maxPartialTextureUpdates = 4; |
3353 | 3354 |
3354 scoped_ptr<LayerTreeHost> host = LayerTreeHost::create(&client, settings, sc
oped_ptr<Thread>()); | 3355 scoped_ptr<LayerTreeHost> host = LayerTreeHost::create(&client, settings, sc
oped_ptr<Thread>()); |
3355 EXPECT_TRUE(host->initializeRendererIfNeeded()); | 3356 EXPECT_TRUE(host->initializeRendererIfNeeded()); |
3356 EXPECT_EQ(4u, host->settings().maxPartialTextureUpdates); | 3357 EXPECT_EQ(4u, host->settings().maxPartialTextureUpdates); |
3357 } | 3358 } |
3358 | 3359 |
3359 } // namespace | 3360 } // namespace |
3360 } // namespace cc | 3361 } // namespace cc |
OLD | NEW |