| Index: cc/raster/tile_task_worker_pool.cc
|
| diff --git a/cc/raster/tile_task_worker_pool.cc b/cc/raster/tile_task_worker_pool.cc
|
| index f8c1c736b52b72fc9ed9d591e6daf389fcef7934..caeead41305699104aeb3d4ef21da74e6cd8f036 100644
|
| --- a/cc/raster/tile_task_worker_pool.cc
|
| +++ b/cc/raster/tile_task_worker_pool.cc
|
| @@ -18,24 +18,6 @@ TileTaskWorkerPool::TileTaskWorkerPool() {}
|
|
|
| TileTaskWorkerPool::~TileTaskWorkerPool() {}
|
|
|
| -// static
|
| -void TileTaskWorkerPool::ScheduleTasksOnOriginThread(TileTaskClient* client,
|
| - TaskGraph* graph) {
|
| - TRACE_EVENT0("cc", "TileTaskWorkerPool::ScheduleTasksOnOriginThread");
|
| -
|
| - for (TaskGraph::Node::Vector::iterator it = graph->nodes.begin();
|
| - it != graph->nodes.end(); ++it) {
|
| - TaskGraph::Node& node = *it;
|
| - TileTask* task = static_cast<TileTask*>(node.task);
|
| -
|
| - if (!task->HasBeenScheduled()) {
|
| - task->WillSchedule();
|
| - task->ScheduleOnOriginThread(client);
|
| - task->DidSchedule();
|
| - }
|
| - }
|
| -}
|
| -
|
| namespace {
|
|
|
| bool IsSupportedPlaybackToMemoryFormat(ResourceFormat format) {
|
|
|