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 "base/time/time.h" | 5 #include "base/time/time.h" |
| 6 #include "cc/debug/lap_timer.h" |
6 #include "cc/resources/tile.h" | 7 #include "cc/resources/tile.h" |
7 #include "cc/resources/tile_priority.h" | 8 #include "cc/resources/tile_priority.h" |
8 #include "cc/test/fake_impl_proxy.h" | 9 #include "cc/test/fake_impl_proxy.h" |
9 #include "cc/test/fake_layer_tree_host_impl.h" | 10 #include "cc/test/fake_layer_tree_host_impl.h" |
10 #include "cc/test/fake_output_surface.h" | 11 #include "cc/test/fake_output_surface.h" |
11 #include "cc/test/fake_output_surface_client.h" | 12 #include "cc/test/fake_output_surface_client.h" |
12 #include "cc/test/fake_picture_layer_impl.h" | 13 #include "cc/test/fake_picture_layer_impl.h" |
13 #include "cc/test/fake_picture_pile_impl.h" | 14 #include "cc/test/fake_picture_pile_impl.h" |
14 #include "cc/test/fake_tile_manager.h" | 15 #include "cc/test/fake_tile_manager.h" |
15 #include "cc/test/fake_tile_manager_client.h" | 16 #include "cc/test/fake_tile_manager_client.h" |
16 #include "cc/test/impl_side_painting_settings.h" | 17 #include "cc/test/impl_side_painting_settings.h" |
17 #include "cc/test/lap_timer.h" | |
18 #include "cc/test/test_shared_bitmap_manager.h" | 18 #include "cc/test/test_shared_bitmap_manager.h" |
19 #include "cc/test/test_tile_priorities.h" | 19 #include "cc/test/test_tile_priorities.h" |
20 #include "cc/trees/layer_tree_impl.h" | 20 #include "cc/trees/layer_tree_impl.h" |
21 | 21 |
22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
23 #include "testing/perf/perf_test.h" | 23 #include "testing/perf/perf_test.h" |
24 | 24 |
25 namespace cc { | 25 namespace cc { |
26 | 26 |
27 namespace { | 27 namespace { |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 | 349 |
350 RunTest("2_16", 16); | 350 RunTest("2_16", 16); |
351 RunTest("2_32", 32); | 351 RunTest("2_32", 32); |
352 RunTest("2_64", 64); | 352 RunTest("2_64", 64); |
353 RunTest("2_128", 128); | 353 RunTest("2_128", 128); |
354 } | 354 } |
355 | 355 |
356 } // namespace | 356 } // namespace |
357 | 357 |
358 } // namespace cc | 358 } // namespace cc |
OLD | NEW |