| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <set> |
| 6 #include <vector> |
| 7 |
| 5 #include "base/message_loop/message_loop_proxy.h" | 8 #include "base/message_loop/message_loop_proxy.h" |
| 6 #include "cc/layers/solid_color_layer.h" | 9 #include "cc/layers/solid_color_layer.h" |
| 7 #include "cc/layers/surface_layer.h" | 10 #include "cc/layers/surface_layer.h" |
| 8 #include "cc/test/fake_impl_proxy.h" | 11 #include "cc/test/fake_impl_proxy.h" |
| 9 #include "cc/test/fake_layer_tree_host.h" | 12 #include "cc/test/fake_layer_tree_host.h" |
| 10 #include "cc/test/fake_layer_tree_host_client.h" | 13 #include "cc/test/fake_layer_tree_host_client.h" |
| 11 #include "cc/test/fake_layer_tree_host_impl.h" | 14 #include "cc/test/fake_layer_tree_host_impl.h" |
| 12 #include "cc/test/fake_output_surface.h" | 15 #include "cc/test/fake_output_surface.h" |
| 13 #include "cc/test/layer_tree_test.h" | 16 #include "cc/test/layer_tree_test.h" |
| 14 #include "cc/test/test_shared_bitmap_manager.h" | 17 #include "cc/test/test_shared_bitmap_manager.h" |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 SurfaceId required_id_; | 230 SurfaceId required_id_; |
| 228 std::set<SurfaceSequence> required_set_; | 231 std::set<SurfaceSequence> required_set_; |
| 229 }; | 232 }; |
| 230 | 233 |
| 231 // TODO(jbauman): Reenable on single thread once http://crbug.com/421923 is | 234 // TODO(jbauman): Reenable on single thread once http://crbug.com/421923 is |
| 232 // fixed. | 235 // fixed. |
| 233 MULTI_THREAD_TEST_F(SurfaceLayerSwapPromise); | 236 MULTI_THREAD_TEST_F(SurfaceLayerSwapPromise); |
| 234 | 237 |
| 235 } // namespace | 238 } // namespace |
| 236 } // namespace cc | 239 } // namespace cc |
| OLD | NEW |