// Copyright 2020 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_HEAP_MARKING_BARRIER_H_ #define V8_HEAP_MARKING_BARRIER_H_ #include <optional> #include "include/v8-internal.h" #include "src/base/functional.h" #include "src/common/globals.h" #include "src/heap/mark-compact.h" #include "src/heap/marking-worklist.h" #include "src/heap/mutable-page-metadata.h" namespace v8 { namespace internal { class Heap; class IncrementalMarking; class LocalHeap; class PagedSpace; class NewSpace; class MarkingBarrier { … }; } // namespace internal } // namespace v8 #endif // V8_HEAP_MARKING_BARRIER_H_