chromium/components/zucchini/image_index.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/zucchini/image_index.h"

#include <algorithm>
#include <utility>

#include "components/zucchini/algorithm.h"
#include "components/zucchini/disassembler.h"

namespace zucchini {

ImageIndex::ImageIndex(ConstBufferView image)
    :{}

ImageIndex::ImageIndex(ImageIndex&&) = default;

ImageIndex::~ImageIndex() = default;

bool ImageIndex::Initialize(Disassembler* disasm) {}

bool ImageIndex::IsToken(offset_t location) const {}

bool ImageIndex::InsertReferences(const ReferenceTypeTraits& traits,
                                  ReferenceReader&& ref_reader) {}

}  // namespace zucchini