| Index: cc/raster/tile_task_worker_pool_unittest.cc | 
| diff --git a/cc/raster/tile_task_worker_pool_unittest.cc b/cc/raster/tile_task_worker_pool_unittest.cc | 
| index 62239c16ac59749db9565954e7d13e7341f70a54..7ac76c9c45c74e3a749e1e224a205fa9e274fb24 100644 | 
| --- a/cc/raster/tile_task_worker_pool_unittest.cc | 
| +++ b/cc/raster/tile_task_worker_pool_unittest.cc | 
| @@ -49,9 +49,7 @@ enum TileTaskWorkerPoolType { | 
|  | 
| class TestRasterTaskImpl : public RasterTask { | 
| public: | 
| -  typedef base::Callback<void( | 
| -      const DisplayListRasterSource::SolidColorAnalysis& analysis, | 
| -      bool was_canceled)> Reply; | 
| +  typedef base::Callback<void(bool was_canceled)> Reply; | 
|  | 
| TestRasterTaskImpl(const Resource* resource, | 
| const Reply& reply, | 
| @@ -77,8 +75,7 @@ class TestRasterTaskImpl : public RasterTask { | 
| } | 
| void CompleteOnOriginThread(TileTaskClient* client) override { | 
| client->ReleaseBufferForRaster(std::move(raster_buffer_)); | 
| -    reply_.Run(DisplayListRasterSource::SolidColorAnalysis(), | 
| -               !HasFinishedRunning()); | 
| +    reply_.Run(!HasFinishedRunning()); | 
| } | 
|  | 
| protected: | 
| @@ -268,7 +265,6 @@ class TileTaskWorkerPoolTest | 
| void OnTaskCompleted( | 
| scoped_ptr<ScopedResource> resource, | 
| unsigned id, | 
| -      const DisplayListRasterSource::SolidColorAnalysis& analysis, | 
| bool was_canceled) { | 
| RasterTaskResult result; | 
| result.id = id; | 
|  |