OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_GPU_TILE_TASK_WORKER_POOL_H_ | 5 #ifndef CC_RASTER_GPU_TILE_TASK_WORKER_POOL_H_ |
6 #define CC_RESOURCES_GPU_TILE_TASK_WORKER_POOL_H_ | 6 #define CC_RASTER_GPU_TILE_TASK_WORKER_POOL_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "cc/resources/tile_task_runner.h" | 9 #include "cc/raster/tile_task_runner.h" |
10 #include "cc/resources/tile_task_worker_pool.h" | 10 #include "cc/raster/tile_task_worker_pool.h" |
11 | 11 |
12 namespace cc { | 12 namespace cc { |
13 class ContextProvider; | 13 class ContextProvider; |
14 class GpuRasterizer; | 14 class GpuRasterizer; |
15 class ResourceProvider; | 15 class ResourceProvider; |
16 | 16 |
17 class CC_EXPORT GpuTileTaskWorkerPool : public TileTaskWorkerPool, | 17 class CC_EXPORT GpuTileTaskWorkerPool : public TileTaskWorkerPool, |
18 public TileTaskRunner, | 18 public TileTaskRunner, |
19 public TileTaskClient { | 19 public TileTaskClient { |
20 public: | 20 public: |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 base::WeakPtrFactory<GpuTileTaskWorkerPool> | 72 base::WeakPtrFactory<GpuTileTaskWorkerPool> |
73 task_set_finished_weak_ptr_factory_; | 73 task_set_finished_weak_ptr_factory_; |
74 | 74 |
75 base::WeakPtrFactory<GpuTileTaskWorkerPool> weak_ptr_factory_; | 75 base::WeakPtrFactory<GpuTileTaskWorkerPool> weak_ptr_factory_; |
76 | 76 |
77 DISALLOW_COPY_AND_ASSIGN(GpuTileTaskWorkerPool); | 77 DISALLOW_COPY_AND_ASSIGN(GpuTileTaskWorkerPool); |
78 }; | 78 }; |
79 | 79 |
80 } // namespace cc | 80 } // namespace cc |
81 | 81 |
82 #endif // CC_RESOURCES_GPU_TILE_TASK_WORKER_POOL_H_ | 82 #endif // CC_RASTER_GPU_TILE_TASK_WORKER_POOL_H_ |
OLD | NEW |