| 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 54399fc01b73bf139ff7718dfa690734d9af208f..fbb791eb007cdcdc08c403cb5e9a246cf327f51a 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp
|
| @@ -33,13 +33,9 @@
|
| namespace blink {
|
|
|
| GIFImageDecoder::GIFImageDecoder(AlphaOption alphaOption,
|
| - ColorSpaceOption colorOptions,
|
| - sk_sp<SkColorSpace> targetColorSpace,
|
| + const ColorBehavior& colorBehavior,
|
| size_t maxDecodedBytes)
|
| - : ImageDecoder(alphaOption,
|
| - colorOptions,
|
| - std::move(targetColorSpace),
|
| - maxDecodedBytes),
|
| + : ImageDecoder(alphaOption, colorBehavior, maxDecodedBytes),
|
| m_repetitionCount(cAnimationLoopOnce) {}
|
|
|
| GIFImageDecoder::~GIFImageDecoder() {}
|
|
|