chromium/v8/src/snapshot/snapshot-source-sink.cc

// Copyright 2014 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-source-sink.h"

#include <vector>

#include "src/base/logging.h"
#include "src/handles/handles-inl.h"
#include "src/objects/objects-inl.h"

namespace v8 {
namespace internal {

void SnapshotByteSink::PutN(int number_of_bytes, const uint8_t v,
                            const char* description) {}

void SnapshotByteSink::PutUint30(uint32_t integer, const char* description) {}

void SnapshotByteSink::PutRaw(const uint8_t* data, int number_of_bytes,
                              const char* description) {}

void SnapshotByteSink::Append(const SnapshotByteSink& other) {}

int SnapshotByteSource::GetBlob(const uint8_t** data) {}
}  // namespace internal
}  // namespace v8