OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 <stddef.h> | 5 #include <stddef.h> |
6 #include <stdint.h> | 6 #include <stdint.h> |
7 | 7 |
8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "cc/base/filter_operations.h" |
9 #include "cc/layers/heads_up_display_layer.h" | 10 #include "cc/layers/heads_up_display_layer.h" |
10 #include "cc/layers/layer_impl.h" | 11 #include "cc/layers/layer_impl.h" |
11 #include "cc/layers/painted_scrollbar_layer.h" | 12 #include "cc/layers/painted_scrollbar_layer.h" |
12 #include "cc/layers/picture_layer.h" | 13 #include "cc/layers/picture_layer.h" |
13 #include "cc/layers/texture_layer.h" | 14 #include "cc/layers/texture_layer.h" |
14 #include "cc/layers/texture_layer_impl.h" | 15 #include "cc/layers/texture_layer_impl.h" |
15 #include "cc/layers/video_layer.h" | 16 #include "cc/layers/video_layer.h" |
16 #include "cc/layers/video_layer_impl.h" | 17 #include "cc/layers/video_layer_impl.h" |
17 #include "cc/output/filter_operations.h" | |
18 #include "cc/paint/paint_flags.h" | 18 #include "cc/paint/paint_flags.h" |
19 #include "cc/resources/single_release_callback.h" | 19 #include "cc/resources/single_release_callback.h" |
20 #include "cc/resources/ui_resource_manager.h" | 20 #include "cc/resources/ui_resource_manager.h" |
21 #include "cc/test/fake_content_layer_client.h" | 21 #include "cc/test/fake_content_layer_client.h" |
22 #include "cc/test/fake_layer_tree_host_client.h" | 22 #include "cc/test/fake_layer_tree_host_client.h" |
23 #include "cc/test/fake_painted_scrollbar_layer.h" | 23 #include "cc/test/fake_painted_scrollbar_layer.h" |
24 #include "cc/test/fake_picture_layer.h" | 24 #include "cc/test/fake_picture_layer.h" |
25 #include "cc/test/fake_picture_layer_impl.h" | 25 #include "cc/test/fake_picture_layer_impl.h" |
26 #include "cc/test/fake_resource_provider.h" | 26 #include "cc/test/fake_resource_provider.h" |
27 #include "cc/test/fake_scoped_ui_resource.h" | 27 #include "cc/test/fake_scoped_ui_resource.h" |
(...skipping 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1636 | 1636 |
1637 FakeContentLayerClient client_; | 1637 FakeContentLayerClient client_; |
1638 int num_draws_ = 0; | 1638 int num_draws_ = 0; |
1639 }; | 1639 }; |
1640 | 1640 |
1641 MULTI_THREAD_TEST_F( | 1641 MULTI_THREAD_TEST_F( |
1642 LayerTreeHostContextTestLoseWorkerContextDuringPrepareTiles); | 1642 LayerTreeHostContextTestLoseWorkerContextDuringPrepareTiles); |
1643 | 1643 |
1644 } // namespace | 1644 } // namespace |
1645 } // namespace cc | 1645 } // namespace cc |
OLD | NEW |