| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CC_RESOURCES_RASTER_WORKER_POOL_H_ | 5 #ifndef CC_RESOURCES_RASTER_WORKER_POOL_H_ |
| 6 #define CC_RESOURCES_RASTER_WORKER_POOL_H_ | 6 #define CC_RESOURCES_RASTER_WORKER_POOL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| 11 #include "cc/base/worker_pool.h" | 11 #include "cc/base/worker_pool.h" |
| 12 #include "cc/resources/resource_provider.h" | 12 #include "cc/resources/resource_provider.h" |
| 13 | 13 |
| 14 class SkDevice; | 14 class SkDevice; |
| 15 | 15 |
| 16 namespace cc { | 16 namespace cc { |
| 17 class PicturePileImpl; | 17 class PicturePileImpl; |
| 18 class PixelBufferRasterWorkerPool; | 18 class PixelBufferRasterWorkerPool; |
| 19 class Resource; | 19 class Resource; |
| 20 | 20 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 } | 196 } |
| 197 | 197 |
| 198 private: | 198 private: |
| 199 ResourceProvider* resource_provider_; | 199 ResourceProvider* resource_provider_; |
| 200 RasterTask::Queue::TaskVector raster_tasks_; | 200 RasterTask::Queue::TaskVector raster_tasks_; |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 } // namespace cc | 203 } // namespace cc |
| 204 | 204 |
| 205 #endif // CC_RESOURCES_RASTER_WORKER_POOL_H_ | 205 #endif // CC_RESOURCES_RASTER_WORKER_POOL_H_ |
| OLD | NEW |