OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/test/fake_tile_manager.h" | 5 #include "cc/test/fake_tile_manager.h" |
6 | 6 |
7 #include <deque> | 7 #include <deque> |
8 | 8 |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "cc/resources/rasterizer.h" | 10 #include "cc/resources/rasterizer.h" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 GetTilesWithAssignedBins(&all_tiles); | 87 GetTilesWithAssignedBins(&all_tiles); |
88 AssignGpuMemoryToTiles(&all_tiles, &tiles_for_raster); | 88 AssignGpuMemoryToTiles(&all_tiles, &tiles_for_raster); |
89 } | 89 } |
90 | 90 |
91 bool FakeTileManager::HasBeenAssignedMemory(Tile* tile) { | 91 bool FakeTileManager::HasBeenAssignedMemory(Tile* tile) { |
92 return std::find(tiles_for_raster.begin(), | 92 return std::find(tiles_for_raster.begin(), |
93 tiles_for_raster.end(), | 93 tiles_for_raster.end(), |
94 tile) != tiles_for_raster.end(); | 94 tile) != tiles_for_raster.end(); |
95 } | 95 } |
96 | 96 |
97 void FakeTileManager::DidFinishRunningTasksForTesting() { | |
98 DidFinishRunningTasks(); | |
99 } | |
100 | |
101 void FakeTileManager::Release(Tile* tile) { | 97 void FakeTileManager::Release(Tile* tile) { |
102 TileManager::Release(tile); | 98 TileManager::Release(tile); |
103 | 99 |
104 FreeResourcesForReleasedTiles(); | 100 FreeResourcesForReleasedTiles(); |
105 CleanUpReleasedTiles(); | 101 CleanUpReleasedTiles(); |
106 } | 102 } |
107 | 103 |
108 } // namespace cc | 104 } // namespace cc |
OLD | NEW |