// Copyright 2016 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_SNAPSHOT_STARTUP_SERIALIZER_H_ #define V8_SNAPSHOT_STARTUP_SERIALIZER_H_ #include <unordered_set> #include "src/handles/global-handles.h" #include "src/snapshot/roots-serializer.h" namespace v8 { namespace internal { class HeapObject; class SnapshotByteSink; class SharedHeapSerializer; class V8_EXPORT_PRIVATE StartupSerializer : public RootsSerializer { … }; class SerializedHandleChecker : public RootVisitor { … }; } // namespace internal } // namespace v8 #endif // V8_SNAPSHOT_STARTUP_SERIALIZER_H_