Index: cc/raster_worker_pool.h |
diff --git a/cc/raster_worker_pool.h b/cc/raster_worker_pool.h |
index d58df2d080ccfd5a04ecb35d0e981493fc6aef0a..cc5f7a12b161944a579d483781adf429e2013a8e 100644 |
--- a/cc/raster_worker_pool.h |
+++ b/cc/raster_worker_pool.h |
@@ -20,8 +20,9 @@ class RasterWorkerPool : public WorkerPool { |
virtual ~RasterWorkerPool(); |
- static scoped_ptr<RasterWorkerPool> Create(size_t num_threads) { |
- return make_scoped_ptr(new RasterWorkerPool(num_threads)); |
+ static scoped_ptr<RasterWorkerPool> Create( |
+ WorkerPoolClient* client, size_t num_threads) { |
+ return make_scoped_ptr(new RasterWorkerPool(client, num_threads)); |
} |
void PostRasterTaskAndReply(PicturePileImpl* picture_pile, |
@@ -29,7 +30,7 @@ class RasterWorkerPool : public WorkerPool { |
const base::Closure& reply); |
private: |
- explicit RasterWorkerPool(size_t num_threads); |
+ RasterWorkerPool(WorkerPoolClient* client, size_t num_threads); |
DISALLOW_COPY_AND_ASSIGN(RasterWorkerPool); |
}; |