| Index: third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h b/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h
|
| index 338360a6701775c2766f70c37930d214ff59994d..f9d0143387494a98d0e5ca1622f4a5e1f7f09996 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.h
|
| @@ -81,6 +81,7 @@ class PLATFORM_EXPORT DeferredImageDecoder final {
|
| size_t frameBytesAtIndex(size_t index) const;
|
| ImageOrientation orientationAtIndex(size_t index) const;
|
| bool hotSpot(IntPoint&) const;
|
| + sk_sp<SkColorSpace> targetColorSpace() const { return m_targetColorSpace; }
|
|
|
| private:
|
| explicit DeferredImageDecoder(std::unique_ptr<ImageDecoder> actualDecoder);
|
| @@ -102,6 +103,7 @@ class PLATFORM_EXPORT DeferredImageDecoder final {
|
| std::unique_ptr<SkRWBuffer> m_rwBuffer;
|
| bool m_allDataReceived;
|
| std::unique_ptr<ImageDecoder> m_actualDecoder;
|
| + sk_sp<SkColorSpace> m_targetColorSpace;
|
|
|
| String m_filenameExtension;
|
| IntSize m_size;
|
|
|