// Copyright 2021 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_MODULES_WEBCODECS_IMAGE_DECODER_CORE_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBCODECS_IMAGE_DECODER_CORE_H_ #include "base/sequence_checker.h" #include "third_party/blink/renderer/modules/modules_export.h" #include "third_party/blink/renderer/platform/image-decoders/image_decoder.h" namespace media { class VideoFrame; } // namespace media namespace blink { class SegmentReader; // A wrapper around a blink::ImageDecoder which is designed to be called on a // specific sequence via WTF::SequenceBound. class MODULES_EXPORT ImageDecoderCore { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBCODECS_IMAGE_DECODER_CORE_H_