// 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. #ifndef COMPONENTS_ZUCCHINI_IMAGE_INDEX_H_ #define COMPONENTS_ZUCCHINI_IMAGE_INDEX_H_ #include <stddef.h> #include <stdint.h> #include <map> #include <vector> #include "base/check_op.h" #include "components/zucchini/buffer_view.h" #include "components/zucchini/image_utils.h" #include "components/zucchini/reference_set.h" #include "components/zucchini/target_pool.h" namespace zucchini { class Disassembler; // A class that holds annotations of an image, allowing quick access to its raw // and reference content. The memory overhead of storing all references is // relatively high, so this is only used during patch generation. class ImageIndex { … }; } // namespace zucchini #endif // COMPONENTS_ZUCCHINI_IMAGE_INDEX_H_