| Index: third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
|
| index ca3575a40bbdc665eea76f231fcab10379125892..b09870ab4e6a758fb26d47d500772c5dc46cdd33 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
|
| @@ -34,8 +34,12 @@ namespace blink {
|
|
|
| GIFImageDecoder::GIFImageDecoder(AlphaOption alphaOption,
|
| ColorSpaceOption colorOptions,
|
| + sk_sp<SkColorSpace> targetColorSpace,
|
| size_t maxDecodedBytes)
|
| - : ImageDecoder(alphaOption, colorOptions, maxDecodedBytes),
|
| + : ImageDecoder(alphaOption,
|
| + colorOptions,
|
| + std::move(targetColorSpace),
|
| + maxDecodedBytes),
|
| m_repetitionCount(cAnimationLoopOnce) {}
|
|
|
| GIFImageDecoder::~GIFImageDecoder() {}
|
|
|