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

Unified Diff: cc/raster_worker_pool.h

Issue 12471007: Part 8 of cc/ directory shuffles: resources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/quads/render_pass_draw_quad.h ('k') | cc/raster_worker_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/raster_worker_pool.h
diff --git a/cc/raster_worker_pool.h b/cc/raster_worker_pool.h
deleted file mode 100644
index c0dfb908684ea87b458ac58b0050b243484da48d..0000000000000000000000000000000000000000
--- a/cc/raster_worker_pool.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CC_RASTER_WORKER_POOL_H_
-#define CC_RASTER_WORKER_POOL_H_
-
-#include <string>
-
-#include "cc/base/worker_pool.h"
-
-namespace cc {
-class PicturePileImpl;
-
-// A worker thread pool that runs raster tasks.
-class RasterWorkerPool : public WorkerPool {
- public:
- typedef base::Callback<void(PicturePileImpl*, RenderingStats*)>
- RasterCallback;
-
- virtual ~RasterWorkerPool();
-
- 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,
- bool is_cheap,
- const RasterCallback& task,
- const base::Closure& reply);
-
- private:
- RasterWorkerPool(WorkerPoolClient* client, size_t num_threads);
-
- DISALLOW_COPY_AND_ASSIGN(RasterWorkerPool);
-};
-
-} // namespace cc
-
-#endif // CC_RASTER_WORKER_POOL_H_
« no previous file with comments | « cc/quads/render_pass_draw_quad.h ('k') | cc/raster_worker_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698