| Index: cc/resources/raster_worker_pool_unittest.cc
|
| diff --git a/cc/resources/raster_worker_pool_unittest.cc b/cc/resources/raster_worker_pool_unittest.cc
|
| index 39a8a48b376ee3cd50f697163602391734c4beaa..f429bf79da27105c8f88677cbe57a5f9e33957c8 100644
|
| --- a/cc/resources/raster_worker_pool_unittest.cc
|
| +++ b/cc/resources/raster_worker_pool_unittest.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "cc/resources/raster_worker_pool.h"
|
|
|
| +#include <limits>
|
| #include <vector>
|
|
|
| #include "cc/debug/test_web_graphics_context_3d.h"
|
| @@ -104,7 +105,7 @@ class RasterWorkerPoolTest : public testing::Test,
|
| resource_provider(), 1);
|
| } else {
|
| raster_worker_pool_ = PixelBufferRasterWorkerPool::Create(
|
| - resource_provider(), 1);
|
| + resource_provider(), 1, std::numeric_limits<size_t>::max());
|
| }
|
|
|
| raster_worker_pool_->SetClient(this);
|
|
|