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_RASTER_TASK_GRAPH_RUNNER_H_ | 5 #ifndef CC_RASTER_TASK_GRAPH_RUNNER_H_ |
6 #define CC_RASTER_TASK_GRAPH_RUNNER_H_ | 6 #define CC_RASTER_TASK_GRAPH_RUNNER_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
8 #include <algorithm> | 11 #include <algorithm> |
9 #include <map> | 12 #include <map> |
10 #include <vector> | 13 #include <vector> |
11 | 14 |
12 #include "base/logging.h" | 15 #include "base/logging.h" |
13 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
15 #include "cc/base/cc_export.h" | 18 #include "cc/base/cc_export.h" |
16 | 19 |
17 namespace cc { | 20 namespace cc { |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 private: | 216 private: |
214 TaskGraph* graph_; | 217 TaskGraph* graph_; |
215 const Task* task_; | 218 const Task* task_; |
216 size_t current_index_; | 219 size_t current_index_; |
217 TaskGraph::Node* current_node_; | 220 TaskGraph::Node* current_node_; |
218 }; | 221 }; |
219 | 222 |
220 } // namespace cc | 223 } // namespace cc |
221 | 224 |
222 #endif // CC_RASTER_TASK_GRAPH_RUNNER_H_ | 225 #endif // CC_RASTER_TASK_GRAPH_RUNNER_H_ |
OLD | NEW |