chromium/v8/src/snapshot/snapshot-data.cc

// 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.

#include "src/snapshot/snapshot-data.h"

#include "src/common/assert-scope.h"
#include "src/snapshot/serializer.h"

namespace v8 {
namespace internal {

void SerializedData::AllocateData(uint32_t size) {}

// static
constexpr uint32_t SerializedData::kMagicNumber;

SnapshotData::SnapshotData(const Serializer* serializer) {}

base::Vector<const uint8_t> SnapshotData::Payload() const {}

}  // namespace internal
}  // namespace v8