|
@@ -61,7 +61,6 @@ public:
|
|
virtual IntSize size() override;
|
|
virtual IntSize size() override;
|
|
|
|
|
|
virtual ErrorOr<ImageFrameDescriptor> frame(size_t index, Optional<IntSize> ideal_size = {}) override;
|
|
virtual ErrorOr<ImageFrameDescriptor> frame(size_t index, Optional<IntSize> ideal_size = {}) override;
|
|
- virtual ErrorOr<Optional<ReadonlyBytes>> icc_data() override;
|
|
|
|
|
|
|
|
private:
|
|
private:
|
|
PortableImageDecoderPlugin(NonnullOwnPtr<SeekableStream> stream);
|
|
PortableImageDecoderPlugin(NonnullOwnPtr<SeekableStream> stream);
|
|
@@ -126,10 +125,4 @@ ErrorOr<ImageFrameDescriptor> PortableImageDecoderPlugin<TContext>::frame(size_t
|
|
return ImageFrameDescriptor { m_context->bitmap, 0 };
|
|
return ImageFrameDescriptor { m_context->bitmap, 0 };
|
|
}
|
|
}
|
|
|
|
|
|
-template<typename TContext>
|
|
|
|
-ErrorOr<Optional<ReadonlyBytes>> PortableImageDecoderPlugin<TContext>::icc_data()
|
|
|
|
-{
|
|
|
|
- return OptionalNone {};
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
}
|
|
}
|