// Copyright 2008 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_IMAGE_DECODERS_ICO_ICO_IMAGE_DECODER_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_IMAGE_DECODERS_ICO_ICO_IMAGE_DECODER_H_ #include <memory> #include "third_party/blink/renderer/platform/image-decoders/bmp/bmp_image_reader.h" #include "third_party/blink/renderer/platform/image-decoders/fast_shared_buffer_reader.h" namespace blink { class PNGImageDecoder; // This class decodes the ICO and CUR image formats. class PLATFORM_EXPORT ICOImageDecoder final : public ImageDecoder { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_IMAGE_DECODERS_ICO_ICO_IMAGE_DECODER_H_