Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1940)

Unified Diff: cc/resources/pixel_buffer_raster_worker_pool.h

Issue 73923003: Shared Raster Worker Threads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build Error for Mac, macro conflict, moving setter to WorkerPool. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/picture_pile_impl.cc ('k') | cc/resources/pixel_buffer_raster_worker_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/pixel_buffer_raster_worker_pool.h
diff --git a/cc/resources/pixel_buffer_raster_worker_pool.h b/cc/resources/pixel_buffer_raster_worker_pool.h
index 94ed284f707fbe3f3e62a012d52159ecbdf7ba66..0dfee606d66b1bfb5faedf676c237a6878c37714 100644
--- a/cc/resources/pixel_buffer_raster_worker_pool.h
+++ b/cc/resources/pixel_buffer_raster_worker_pool.h
@@ -21,12 +21,10 @@ class CC_EXPORT PixelBufferRasterWorkerPool : public RasterWorkerPool {
static scoped_ptr<RasterWorkerPool> Create(
ResourceProvider* resource_provider,
ContextProvider* context_provider,
- size_t num_threads,
size_t max_transfer_buffer_usage_bytes) {
return make_scoped_ptr<RasterWorkerPool>(
new PixelBufferRasterWorkerPool(resource_provider,
context_provider,
- num_threads,
max_transfer_buffer_usage_bytes));
}
@@ -44,7 +42,6 @@ class CC_EXPORT PixelBufferRasterWorkerPool : public RasterWorkerPool {
private:
PixelBufferRasterWorkerPool(ResourceProvider* resource_provider,
ContextProvider* context_provider,
- size_t num_threads,
size_t max_transfer_buffer_usage_bytes);
void FlushUploads();
« no previous file with comments | « cc/resources/picture_pile_impl.cc ('k') | cc/resources/pixel_buffer_raster_worker_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698