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> |
| 6 #include <stdint.h> |
| 7 |
5 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
6 #include "base/location.h" | 9 #include "base/location.h" |
7 #include "base/thread_task_runner_handle.h" | 10 #include "base/thread_task_runner_handle.h" |
8 #include "base/time/time.h" | 11 #include "base/time/time.h" |
9 #include "cc/debug/lap_timer.h" | 12 #include "cc/debug/lap_timer.h" |
10 #include "cc/raster/raster_buffer.h" | 13 #include "cc/raster/raster_buffer.h" |
11 #include "cc/test/begin_frame_args_test.h" | 14 #include "cc/test/begin_frame_args_test.h" |
12 #include "cc/test/fake_display_list_raster_source.h" | 15 #include "cc/test/fake_display_list_raster_source.h" |
13 #include "cc/test/fake_impl_task_runner_provider.h" | 16 #include "cc/test/fake_impl_task_runner_provider.h" |
14 #include "cc/test/fake_layer_tree_host_impl.h" | 17 #include "cc/test/fake_layer_tree_host_impl.h" |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 RunEvictionQueueConstructAndIterateTest("10_64", 10, 64); | 480 RunEvictionQueueConstructAndIterateTest("10_64", 10, 64); |
478 RunEvictionQueueConstructAndIterateTest("10_128", 10, 128); | 481 RunEvictionQueueConstructAndIterateTest("10_128", 10, 128); |
479 RunEvictionQueueConstructAndIterateTest("50_16", 50, 16); | 482 RunEvictionQueueConstructAndIterateTest("50_16", 50, 16); |
480 RunEvictionQueueConstructAndIterateTest("50_32", 50, 32); | 483 RunEvictionQueueConstructAndIterateTest("50_32", 50, 32); |
481 RunEvictionQueueConstructAndIterateTest("50_64", 50, 64); | 484 RunEvictionQueueConstructAndIterateTest("50_64", 50, 64); |
482 RunEvictionQueueConstructAndIterateTest("50_128", 50, 128); | 485 RunEvictionQueueConstructAndIterateTest("50_128", 50, 128); |
483 } | 486 } |
484 | 487 |
485 } // namespace | 488 } // namespace |
486 } // namespace cc | 489 } // namespace cc |
OLD | NEW |