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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 RasterTask::Vector completed_tasks_; | 58 RasterTask::Vector completed_tasks_; |
59 }; | 59 }; |
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 nullptr, |
69 g_fake_tile_task_runner.Pointer(), | 69 g_fake_tile_task_runner.Pointer(), |
70 nullptr, | |
70 std::numeric_limits<size_t>::max()) { | 71 std::numeric_limits<size_t>::max()) { |
71 } | 72 } |
72 | 73 |
73 FakeTileManager::FakeTileManager(TileManagerClient* client, | 74 FakeTileManager::FakeTileManager(TileManagerClient* client, |
74 ResourcePool* resource_pool) | 75 ResourcePool* resource_pool) |
75 : TileManager(client, | 76 : TileManager(client, |
76 base::MessageLoopProxy::current(), | 77 base::MessageLoopProxy::current(), |
77 resource_pool, | 78 resource_pool, |
78 g_fake_tile_task_runner.Pointer(), | 79 g_fake_tile_task_runner.Pointer(), |
80 nullptr, | |
79 std::numeric_limits<size_t>::max()) { | 81 std::numeric_limits<size_t>::max()) { |
80 } | 82 } |
81 | 83 |
82 FakeTileManager::~FakeTileManager() {} | 84 FakeTileManager::~FakeTileManager() {} |
83 | 85 |
86 // TODO(vmiura): This seems unused. Remove it? | |
84 void FakeTileManager::AssignMemoryToTiles( | 87 void FakeTileManager::AssignMemoryToTiles( |
vmiura
2014/12/30 22:24:38
Remove this unused method?
hendrikw
2014/12/31 00:03:56
Done.
| |
85 const GlobalStateThatImpactsTilePriority& state) { | 88 const GlobalStateThatImpactsTilePriority& state) { |
86 tiles_for_raster.clear(); | 89 tiles_for_raster.clear(); |
87 | 90 |
88 SetGlobalStateForTesting(state); | 91 SetGlobalStateForTesting(state); |
89 AssignGpuMemoryToTiles(&tiles_for_raster); | 92 AssignGpuMemoryToTiles(&tiles_for_raster, std::numeric_limits<size_t>::max()); |
90 } | 93 } |
91 | 94 |
92 bool FakeTileManager::HasBeenAssignedMemory(Tile* tile) { | 95 bool FakeTileManager::HasBeenAssignedMemory(Tile* tile) { |
93 return std::find(tiles_for_raster.begin(), | 96 return std::find(tiles_for_raster.begin(), |
94 tiles_for_raster.end(), | 97 tiles_for_raster.end(), |
95 tile) != tiles_for_raster.end(); | 98 tile) != tiles_for_raster.end(); |
96 } | 99 } |
97 | 100 |
98 void FakeTileManager::Release(Tile* tile) { | 101 void FakeTileManager::Release(Tile* tile) { |
99 TileManager::Release(tile); | 102 TileManager::Release(tile); |
100 | 103 |
101 FreeResourcesForReleasedTiles(); | 104 FreeResourcesForReleasedTiles(); |
102 CleanUpReleasedTiles(); | 105 CleanUpReleasedTiles(); |
103 } | 106 } |
104 | 107 |
105 } // namespace cc | 108 } // namespace cc |
OLD | NEW |