OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_RENDERER_RASTER_WORKER_POOL_H_ | 5 #ifndef CONTENT_RENDERER_RASTER_WORKER_POOL_H_ |
6 #define CONTENT_RENDERER_RASTER_WORKER_POOL_H_ | 6 #define CONTENT_RENDERER_RASTER_WORKER_POOL_H_ |
7 | 7 |
| 8 #include <memory> |
| 9 |
8 #include "base/callback.h" | 10 #include "base/callback.h" |
9 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
10 #include "base/macros.h" | 12 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "base/sequenced_task_runner.h" | 13 #include "base/sequenced_task_runner.h" |
13 #include "base/synchronization/condition_variable.h" | 14 #include "base/synchronization/condition_variable.h" |
14 #include "base/task_runner.h" | 15 #include "base/task_runner.h" |
15 #include "base/threading/simple_thread.h" | 16 #include "base/threading/simple_thread.h" |
16 #include "cc/raster/task_category.h" | 17 #include "cc/raster/task_category.h" |
17 #include "cc/raster/task_graph_runner.h" | 18 #include "cc/raster/task_graph_runner.h" |
18 #include "cc/raster/task_graph_work_queue.h" | 19 #include "cc/raster/task_graph_work_queue.h" |
19 #include "content/common/content_export.h" | 20 #include "content/common/content_export.h" |
20 | 21 |
21 namespace content { | 22 namespace content { |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 // Condition variable that is waited on by origin threads until a namespace | 139 // Condition variable that is waited on by origin threads until a namespace |
139 // has finished running all associated tasks. | 140 // has finished running all associated tasks. |
140 base::ConditionVariable has_namespaces_with_finished_running_tasks_cv_; | 141 base::ConditionVariable has_namespaces_with_finished_running_tasks_cv_; |
141 // Set during shutdown. Tells Run() to return when no more tasks are pending. | 142 // Set during shutdown. Tells Run() to return when no more tasks are pending. |
142 bool shutdown_; | 143 bool shutdown_; |
143 }; | 144 }; |
144 | 145 |
145 } // namespace content | 146 } // namespace content |
146 | 147 |
147 #endif // CONTENT_RENDERER_RASTER_WORKER_POOL_H_ | 148 #endif // CONTENT_RENDERER_RASTER_WORKER_POOL_H_ |
OLD | NEW |