Chromium Code Reviews| 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_IMAGE_COPY_RASTER_WORKER_POOL_H_ | 5 #ifndef CC_RESOURCES_IMAGE_COPY_RASTER_WORKER_POOL_H_ |
| 6 #define CC_RESOURCES_IMAGE_COPY_RASTER_WORKER_POOL_H_ | 6 #define CC_RESOURCES_IMAGE_COPY_RASTER_WORKER_POOL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 typedef std::vector<RasterTaskState> Vector; | 75 typedef std::vector<RasterTaskState> Vector; |
| 76 | 76 |
| 77 RasterTaskState(const RasterTask* task, ScopedResource* resource) | 77 RasterTaskState(const RasterTask* task, ScopedResource* resource) |
| 78 : task(task), resource(resource) {} | 78 : task(task), resource(resource) {} |
| 79 | 79 |
| 80 const RasterTask* task; | 80 const RasterTask* task; |
| 81 ScopedResource* resource; | 81 ScopedResource* resource; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 void OnRasterFinished(); | 84 void OnRasterFinished(); |
| 85 void OnRasterRequiredForActivationFinished(); | 85 void OnRasterTaskSetFinished(TaskSet task_set); |
| 86 void FlushCopies(); | 86 void FlushCopies(); |
| 87 scoped_refptr<base::debug::ConvertableToTraceFormat> StateAsValue() const; | 87 scoped_refptr<base::debug::ConvertableToTraceFormat> StateAsValue() const; |
| 88 void StagingStateAsValueInto(base::debug::TracedValue* staging_state) const; | 88 void StagingStateAsValueInto(base::debug::TracedValue* staging_state) const; |
| 89 | 89 |
| 90 scoped_refptr<base::SequencedTaskRunner> task_runner_; | 90 scoped_refptr<base::SequencedTaskRunner> task_runner_; |
| 91 TaskGraphRunner* task_graph_runner_; | 91 TaskGraphRunner* task_graph_runner_; |
| 92 const NamespaceToken namespace_token_; | 92 const NamespaceToken namespace_token_; |
| 93 RasterizerClient* client_; | 93 RasterizerClient* client_; |
| 94 ContextProvider* context_provider_; | 94 ContextProvider* context_provider_; |
| 95 ResourceProvider* resource_provider_; | 95 ResourceProvider* resource_provider_; |
| 96 ResourcePool* resource_pool_; | 96 ResourcePool* resource_pool_; |
| 97 | 97 |
| 98 RasterTaskState::Vector raster_task_states_; | 98 RasterTaskState::Vector raster_task_states_; |
| 99 | 99 |
| 100 bool has_performed_copy_since_last_flush_; | 100 bool has_performed_copy_since_last_flush_; |
| 101 | 101 |
| 102 bool raster_tasks_pending_; | 102 bool raster_tasks_pending_; |
| 103 bool raster_tasks_required_for_activation_pending_; | 103 RasterTaskQueue::Item::TaskSetCollection raster_task_sets_pending_; |
| 104 | 104 |
| 105 scoped_refptr<RasterizerTask> raster_finished_task_; | 105 scoped_refptr<RasterizerTask> raster_finished_task_; |
| 106 scoped_refptr<RasterizerTask> raster_required_for_activation_finished_task_; | 106 std::vector<scoped_refptr<RasterizerTask> > task_set_finished_tasks_; |
|
reveman
2014/09/05 08:38:59
array
ernstm
2014/09/05 21:36:10
Done.
| |
| 107 | 107 |
| 108 // Task graph used when scheduling tasks and vector used to gather | 108 // Task graph used when scheduling tasks and vector used to gather |
| 109 // completed tasks. | 109 // completed tasks. |
| 110 TaskGraph graph_; | 110 TaskGraph graph_; |
| 111 Task::Vector completed_tasks_; | 111 Task::Vector completed_tasks_; |
| 112 | 112 |
| 113 base::WeakPtrFactory<ImageCopyRasterWorkerPool> | 113 base::WeakPtrFactory<ImageCopyRasterWorkerPool> |
| 114 raster_finished_weak_ptr_factory_; | 114 raster_finished_weak_ptr_factory_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(ImageCopyRasterWorkerPool); | 116 DISALLOW_COPY_AND_ASSIGN(ImageCopyRasterWorkerPool); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace cc | 119 } // namespace cc |
| 120 | 120 |
| 121 #endif // CC_RESOURCES_IMAGE_COPY_RASTER_WORKER_POOL_H_ | 121 #endif // CC_RESOURCES_IMAGE_COPY_RASTER_WORKER_POOL_H_ |
| OLD | NEW |