| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project 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 V8_HEAP_INCREMENTAL_MARKING_H_ | 5 #ifndef V8_HEAP_INCREMENTAL_MARKING_H_ |
| 6 #define V8_HEAP_INCREMENTAL_MARKING_H_ | 6 #define V8_HEAP_INCREMENTAL_MARKING_H_ |
| 7 | 7 |
| 8 #include "src/cancelable-task.h" | 8 #include "src/cancelable-task.h" |
| 9 #include "src/execution.h" | 9 #include "src/execution.h" |
| 10 #include "src/heap/heap.h" | |
| 11 #include "src/heap/incremental-marking-job.h" | 10 #include "src/heap/incremental-marking-job.h" |
| 12 #include "src/heap/spaces.h" | 11 #include "src/heap/spaces.h" |
| 13 #include "src/objects.h" | 12 #include "src/objects.h" |
| 14 | 13 |
| 15 namespace v8 { | 14 namespace v8 { |
| 16 namespace internal { | 15 namespace internal { |
| 17 | 16 |
| 18 // Forward declarations. | 17 // Forward declarations. |
| 19 class MarkBit; | 18 class MarkBit; |
| 20 class PagedSpace; | 19 class PagedSpace; |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 GCRequestType request_type_; | 297 GCRequestType request_type_; |
| 299 | 298 |
| 300 IncrementalMarkingJob incremental_marking_job_; | 299 IncrementalMarkingJob incremental_marking_job_; |
| 301 | 300 |
| 302 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); | 301 DISALLOW_IMPLICIT_CONSTRUCTORS(IncrementalMarking); |
| 303 }; | 302 }; |
| 304 } // namespace internal | 303 } // namespace internal |
| 305 } // namespace v8 | 304 } // namespace v8 |
| 306 | 305 |
| 307 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ | 306 #endif // V8_HEAP_INCREMENTAL_MARKING_H_ |
| OLD | NEW |