// 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_TARGETS_AFFINITY_H_ #define COMPONENTS_ZUCCHINI_TARGETS_AFFINITY_H_ #include <stddef.h> #include <stdint.h> #include <deque> #include <vector> #include "components/zucchini/image_utils.h" namespace zucchini { class EquivalenceMap; // Computes and stores affinity between old and new targets for a single target // pool. This is only used during patch generation. class TargetsAffinity { … }; } // namespace zucchini #endif // COMPONENTS_ZUCCHINI_TARGETS_AFFINITY_H_