// Copyright 2018 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_IMAGE_FETCHER_CORE_FAKE_IMAGE_DECODER_H_ #define COMPONENTS_IMAGE_FETCHER_CORE_FAKE_IMAGE_DECODER_H_ #include <string> #include "base/functional/bind.h" #include "components/image_fetcher/core/image_decoder.h" #include "components/image_fetcher/core/image_fetcher_types.h" #include "ui/gfx/image/image.h" namespace gfx { class Size; } // namespace gfx namespace image_fetcher { class FakeImageDecoder : public image_fetcher::ImageDecoder { … }; } // namespace image_fetcher #endif // COMPONENTS_IMAGE_FETCHER_CORE_FAKE_IMAGE_DECODER_H_