// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_IMAGE_FETCHER_IMAGE_DECODER_IMPL_H_ #define CHROME_BROWSER_IMAGE_FETCHER_IMAGE_DECODER_IMPL_H_ #include <memory> #include <vector> #include "chrome/browser/image_decoder/image_decoder.h" #include "components/image_fetcher/core/image_decoder.h" // image_fetcher::ImageDecoder implementation. class ImageDecoderImpl : public image_fetcher::ImageDecoder { … }; #endif // CHROME_BROWSER_IMAGE_FETCHER_IMAGE_DECODER_IMPL_H_