// 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_SNAPSHOT_SNAPSHOT_DATA_H_ #define V8_SNAPSHOT_SNAPSHOT_DATA_H_ #include "src/base/bit-field.h" #include "src/base/memory.h" #include "src/base/vector.h" #include "src/codegen/external-reference-table.h" #include "src/utils/memcopy.h" namespace v8 { namespace internal { // Forward declarations. class Isolate; class Serializer; class SerializedData { … }; // Wrapper around reservation sizes and the serialization payload. class V8_EXPORT_PRIVATE SnapshotData : public SerializedData { … }; } // namespace internal } // namespace v8 #endif // V8_SNAPSHOT_SNAPSHOT_DATA_H_