| 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 #include <limits> | 8 #include <limits> |
| 9 | 9 |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 base::LazyInstance<FakeTileTaskRunnerImpl> g_fake_tile_task_runner = | 60 base::LazyInstance<FakeTileTaskRunnerImpl> g_fake_tile_task_runner = |
| 61 LAZY_INSTANCE_INITIALIZER; | 61 LAZY_INSTANCE_INITIALIZER; |
| 62 | 62 |
| 63 } // namespace | 63 } // namespace |
| 64 | 64 |
| 65 FakeTileManager::FakeTileManager(TileManagerClient* client) | 65 FakeTileManager::FakeTileManager(TileManagerClient* client) |
| 66 : TileManager(client, | 66 : TileManager(client, |
| 67 base::MessageLoopProxy::current(), | 67 base::MessageLoopProxy::current(), |
| 68 NULL, | 68 NULL, |
| 69 g_fake_tile_task_runner.Pointer(), | 69 g_fake_tile_task_runner.Pointer(), |
| 70 NULL, | |
| 71 std::numeric_limits<size_t>::max()) { | 70 std::numeric_limits<size_t>::max()) { |
| 72 } | 71 } |
| 73 | 72 |
| 74 FakeTileManager::FakeTileManager(TileManagerClient* client, | 73 FakeTileManager::FakeTileManager(TileManagerClient* client, |
| 75 ResourcePool* resource_pool) | 74 ResourcePool* resource_pool) |
| 76 : TileManager(client, | 75 : TileManager(client, |
| 77 base::MessageLoopProxy::current(), | 76 base::MessageLoopProxy::current(), |
| 78 resource_pool, | 77 resource_pool, |
| 79 g_fake_tile_task_runner.Pointer(), | 78 g_fake_tile_task_runner.Pointer(), |
| 80 NULL, | |
| 81 std::numeric_limits<size_t>::max()) { | 79 std::numeric_limits<size_t>::max()) { |
| 82 } | 80 } |
| 83 | 81 |
| 84 FakeTileManager::~FakeTileManager() {} | 82 FakeTileManager::~FakeTileManager() {} |
| 85 | 83 |
| 86 void FakeTileManager::AssignMemoryToTiles( | 84 void FakeTileManager::AssignMemoryToTiles( |
| 87 const GlobalStateThatImpactsTilePriority& state) { | 85 const GlobalStateThatImpactsTilePriority& state) { |
| 88 tiles_for_raster.clear(); | 86 tiles_for_raster.clear(); |
| 89 | 87 |
| 90 SetGlobalStateForTesting(state); | 88 SetGlobalStateForTesting(state); |
| 91 AssignGpuMemoryToTiles(&tiles_for_raster); | 89 AssignGpuMemoryToTiles(&tiles_for_raster); |
| 92 } | 90 } |
| 93 | 91 |
| 94 bool FakeTileManager::HasBeenAssignedMemory(Tile* tile) { | 92 bool FakeTileManager::HasBeenAssignedMemory(Tile* tile) { |
| 95 return std::find(tiles_for_raster.begin(), | 93 return std::find(tiles_for_raster.begin(), |
| 96 tiles_for_raster.end(), | 94 tiles_for_raster.end(), |
| 97 tile) != tiles_for_raster.end(); | 95 tile) != tiles_for_raster.end(); |
| 98 } | 96 } |
| 99 | 97 |
| 100 void FakeTileManager::Release(Tile* tile) { | 98 void FakeTileManager::Release(Tile* tile) { |
| 101 TileManager::Release(tile); | 99 TileManager::Release(tile); |
| 102 | 100 |
| 103 FreeResourcesForReleasedTiles(); | 101 FreeResourcesForReleasedTiles(); |
| 104 CleanUpReleasedTiles(); | 102 CleanUpReleasedTiles(); |
| 105 } | 103 } |
| 106 | 104 |
| 107 } // namespace cc | 105 } // namespace cc |
| OLD | NEW |