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/run_loop.h" | 8 #include "base/run_loop.h" |
6 #include "base/thread_task_runner_handle.h" | 9 #include "base/thread_task_runner_handle.h" |
7 #include "cc/playback/display_list_raster_source.h" | 10 #include "cc/playback/display_list_raster_source.h" |
8 #include "cc/playback/display_list_recording_source.h" | 11 #include "cc/playback/display_list_recording_source.h" |
9 #include "cc/raster/raster_buffer.h" | 12 #include "cc/raster/raster_buffer.h" |
10 #include "cc/resources/resource_pool.h" | 13 #include "cc/resources/resource_pool.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_display_list_recording_source.h" | 16 #include "cc/test/fake_display_list_recording_source.h" |
14 #include "cc/test/fake_impl_task_runner_provider.h" | 17 #include "cc/test/fake_impl_task_runner_provider.h" |
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1893 | 1896 |
1894 // Ensures that the tile manager does not attempt to reuse tiles when partial | 1897 // Ensures that the tile manager does not attempt to reuse tiles when partial |
1895 // raster is disabled. | 1898 // raster is disabled. |
1896 TEST_F(TileManagerTest, PartialRasterSuccessfullyDisabled) { | 1899 TEST_F(TileManagerTest, PartialRasterSuccessfullyDisabled) { |
1897 RunPartialRasterCheck(std::move(host_impl_), | 1900 RunPartialRasterCheck(std::move(host_impl_), |
1898 false /* partial_raster_enabled */); | 1901 false /* partial_raster_enabled */); |
1899 } | 1902 } |
1900 | 1903 |
1901 } // namespace | 1904 } // namespace |
1902 } // namespace cc | 1905 } // namespace cc |
OLD | NEW |