OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/layers/picture_layer_impl.h" | 5 #include "cc/layers/picture_layer_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <limits> | 10 #include <limits> |
11 #include <set> | 11 #include <set> |
12 #include <utility> | 12 #include <utility> |
13 | 13 |
14 #include "base/location.h" | 14 #include "base/location.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
17 #include "cc/base/math_util.h" | 17 #include "cc/base/math_util.h" |
18 #include "cc/layers/append_quads_data.h" | 18 #include "cc/layers/append_quads_data.h" |
19 #include "cc/layers/picture_layer.h" | 19 #include "cc/layers/picture_layer.h" |
20 #include "cc/quads/draw_quad.h" | 20 #include "cc/quads/draw_quad.h" |
21 #include "cc/quads/tile_draw_quad.h" | 21 #include "cc/quads/tile_draw_quad.h" |
22 #include "cc/test/begin_frame_args_test.h" | 22 #include "cc/test/begin_frame_args_test.h" |
23 #include "cc/test/fake_content_layer_client.h" | 23 #include "cc/test/fake_content_layer_client.h" |
24 #include "cc/test/fake_impl_task_runner_provider.h" | 24 #include "cc/test/fake_impl_task_runner_provider.h" |
25 #include "cc/test/fake_layer_tree_host.h" | |
vmpstr
2016/07/22 21:08:42
Is this pure IWYU or was it pulling the classes fr
danakj
2016/07/22 21:19:30
Yes IWYU.
| |
26 #include "cc/test/fake_layer_tree_host_client.h" | |
25 #include "cc/test/fake_layer_tree_host_impl.h" | 27 #include "cc/test/fake_layer_tree_host_impl.h" |
26 #include "cc/test/fake_output_surface.h" | 28 #include "cc/test/fake_output_surface.h" |
27 #include "cc/test/fake_picture_layer_impl.h" | 29 #include "cc/test/fake_picture_layer_impl.h" |
28 #include "cc/test/fake_raster_source.h" | 30 #include "cc/test/fake_raster_source.h" |
29 #include "cc/test/fake_recording_source.h" | 31 #include "cc/test/fake_recording_source.h" |
30 #include "cc/test/geometry_test_utils.h" | 32 #include "cc/test/geometry_test_utils.h" |
31 #include "cc/test/gpu_rasterization_enabled_settings.h" | 33 #include "cc/test/gpu_rasterization_enabled_settings.h" |
32 #include "cc/test/layer_test_common.h" | 34 #include "cc/test/layer_test_common.h" |
33 #include "cc/test/test_layer_tree_host_base.h" | 35 #include "cc/test/test_layer_tree_host_base.h" |
34 #include "cc/test/test_shared_bitmap_manager.h" | 36 #include "cc/test/test_shared_bitmap_manager.h" |
(...skipping 4966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5001 EXPECT_FLOAT_EQ(expected_contents_scale, | 5003 EXPECT_FLOAT_EQ(expected_contents_scale, |
5002 pending_layer_ptr->picture_layer_tiling_set() | 5004 pending_layer_ptr->picture_layer_tiling_set() |
5003 ->FindTilingWithResolution(HIGH_RESOLUTION) | 5005 ->FindTilingWithResolution(HIGH_RESOLUTION) |
5004 ->contents_scale()) | 5006 ->contents_scale()) |
5005 << "ideal_contents_scale: " << ideal_contents_scale; | 5007 << "ideal_contents_scale: " << ideal_contents_scale; |
5006 } | 5008 } |
5007 } | 5009 } |
5008 | 5010 |
5009 } // namespace | 5011 } // namespace |
5010 } // namespace cc | 5012 } // namespace cc |
OLD | NEW |