// 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_TEST_REFERENCE_READER_H_ #define COMPONENTS_ZUCCHINI_TEST_REFERENCE_READER_H_ #include <stddef.h> #include <optional> #include <vector> #include "components/zucchini/image_utils.h" namespace zucchini { // A trivial ReferenceReader that reads injected references. class TestReferenceReader : public ReferenceReader { … }; } // namespace zucchini #endif // COMPONENTS_ZUCCHINI_TEST_REFERENCE_READER_H_