diff options
Diffstat (limited to 'cc/resources/raster_worker_pool.cc')
-rw-r--r-- | cc/resources/raster_worker_pool.cc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cc/resources/raster_worker_pool.cc b/cc/resources/raster_worker_pool.cc index 369a0e5..c2a4a0b 100644 --- a/cc/resources/raster_worker_pool.cc +++ b/cc/resources/raster_worker_pool.cc @@ -25,14 +25,12 @@ class RasterWorkerPoolTaskImpl : public internal::WorkerPoolTask { virtual bool IsCheap() OVERRIDE { return is_cheap_; } - virtual void Run(RenderingStats* rendering_stats) OVERRIDE { - task_.Run(picture_pile_.get(), rendering_stats); + virtual void Run() OVERRIDE { + task_.Run(picture_pile_.get()); } - virtual void RunOnThread( - RenderingStats* rendering_stats, unsigned thread_index) OVERRIDE { - task_.Run(picture_pile_->GetCloneForDrawingOnThread(thread_index), - rendering_stats); + virtual void RunOnThread(unsigned thread_index) OVERRIDE { + task_.Run(picture_pile_->GetCloneForDrawingOnThread(thread_index)); } private: |