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 <stddef.h> | 5 #include <stddef.h> |
6 #include <stdint.h> | 6 #include <stdint.h> |
7 | 7 |
8 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
9 #include "base/location.h" | 9 #include "base/location.h" |
10 #include "base/threading/thread_task_runner_handle.h" | 10 #include "base/threading/thread_task_runner_handle.h" |
11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
12 #include "cc/debug/lap_timer.h" | 12 #include "cc/debug/lap_timer.h" |
13 #include "cc/raster/raster_buffer.h" | 13 #include "cc/raster/raster_buffer.h" |
14 #include "cc/test/begin_frame_args_test.h" | 14 #include "cc/test/begin_frame_args_test.h" |
15 #include "cc/test/fake_compositor_frame_sink.h" | 15 #include "cc/test/fake_compositor_frame_sink.h" |
16 #include "cc/test/fake_compositor_frame_sink_client.h" | 16 #include "cc/test/fake_compositor_frame_sink_client.h" |
17 #include "cc/test/fake_impl_task_runner_provider.h" | 17 #include "cc/test/fake_impl_task_runner_provider.h" |
18 #include "cc/test/fake_layer_tree_host_impl.h" | 18 #include "cc/test/fake_layer_tree_host_impl.h" |
19 #include "cc/test/fake_picture_layer_impl.h" | 19 #include "cc/test/fake_picture_layer_impl.h" |
20 #include "cc/test/fake_raster_source.h" | 20 #include "cc/test/fake_raster_source.h" |
21 #include "cc/test/fake_tile_manager.h" | 21 #include "cc/test/fake_tile_manager.h" |
22 #include "cc/test/fake_tile_manager_client.h" | 22 #include "cc/test/fake_tile_manager_client.h" |
23 #include "cc/test/fake_tile_task_manager.h" | 23 #include "cc/test/fake_tile_task_manager.h" |
24 #include "cc/test/test_layer_tree_host_base.h" | 24 #include "cc/test/test_layer_tree_host_base.h" |
25 #include "cc/test/test_shared_bitmap_manager.h" | |
26 #include "cc/test/test_task_graph_runner.h" | 25 #include "cc/test/test_task_graph_runner.h" |
27 #include "cc/test/test_tile_priorities.h" | 26 #include "cc/test/test_tile_priorities.h" |
28 #include "cc/tiles/tile.h" | 27 #include "cc/tiles/tile.h" |
29 #include "cc/tiles/tile_priority.h" | 28 #include "cc/tiles/tile_priority.h" |
30 #include "cc/trees/layer_tree_impl.h" | 29 #include "cc/trees/layer_tree_impl.h" |
31 | 30 |
32 #include "testing/gtest/include/gtest/gtest.h" | 31 #include "testing/gtest/include/gtest/gtest.h" |
33 #include "testing/perf/perf_test.h" | 32 #include "testing/perf/perf_test.h" |
34 | 33 |
35 namespace cc { | 34 namespace cc { |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 RunEvictionQueueConstructAndIterateTest("10_64", 10, 64); | 345 RunEvictionQueueConstructAndIterateTest("10_64", 10, 64); |
347 RunEvictionQueueConstructAndIterateTest("10_128", 10, 128); | 346 RunEvictionQueueConstructAndIterateTest("10_128", 10, 128); |
348 RunEvictionQueueConstructAndIterateTest("50_16", 50, 16); | 347 RunEvictionQueueConstructAndIterateTest("50_16", 50, 16); |
349 RunEvictionQueueConstructAndIterateTest("50_32", 50, 32); | 348 RunEvictionQueueConstructAndIterateTest("50_32", 50, 32); |
350 RunEvictionQueueConstructAndIterateTest("50_64", 50, 64); | 349 RunEvictionQueueConstructAndIterateTest("50_64", 50, 64); |
351 RunEvictionQueueConstructAndIterateTest("50_128", 50, 128); | 350 RunEvictionQueueConstructAndIterateTest("50_128", 50, 128); |
352 } | 351 } |
353 | 352 |
354 } // namespace | 353 } // namespace |
355 } // namespace cc | 354 } // namespace cc |
OLD | NEW |