// 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_TARGET_POOL_H_ #define COMPONENTS_ZUCCHINI_TARGET_POOL_H_ #include <stddef.h> #include <deque> #include <vector> #include "components/zucchini/image_utils.h" #include "components/zucchini/patch_reader.h" namespace zucchini { class OffsetMapper; class TargetSource; // Ordered container of distinct targets that have the same semantics, along // with a list of associated reference types, only used during patch generation. class TargetPool { … }; } // namespace zucchini #endif // COMPONENTS_ZUCCHINI_TARGET_POOL_H_