diff options
Diffstat (limited to 'deps/v8/src/heap/memory-chunk-layout.h')
-rw-r--r-- | deps/v8/src/heap/memory-chunk-layout.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/heap/memory-chunk-layout.h b/deps/v8/src/heap/memory-chunk-layout.h index f37583ab42..1b958f0cbf 100644 --- a/deps/v8/src/heap/memory-chunk-layout.h +++ b/deps/v8/src/heap/memory-chunk-layout.h @@ -7,6 +7,7 @@ #include "src/heap/heap.h" #include "src/heap/list.h" +#include "src/heap/progress-bar.h" #include "src/heap/slot-set.h" #ifdef V8_ENABLE_CONSERVATIVE_STACK_SCANNING @@ -50,7 +51,7 @@ class V8_EXPORT_PRIVATE MemoryChunkLayout { FIELD(VirtualMemory, Reservation), // MemoryChunk fields: FIELD(SlotSet* [kNumSets], SlotSet), - FIELD(std::atomic<size_t>, ProgressBar), + FIELD(ProgressBar, ProgressBar), FIELD(std::atomic<intptr_t>, LiveByteCount), FIELD(SlotSet*, SweepingSlotSet), FIELD(TypedSlotsSet* [kNumSets], TypedSlotSet), |