| Index: third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.cpp
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.cpp
|
| index bbfec458fc8a48a2ca2e4ebb2493f0c1a93202d0..c9045baf3561de6a1fa4434701bbc638bda8cf33 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.cpp
|
| @@ -117,13 +117,9 @@ void alphaBlendNonPremultiplied(blink::ImageFrame& src,
|
| namespace blink {
|
|
|
| WEBPImageDecoder::WEBPImageDecoder(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_decoder(0),
|
| m_formatFlags(0),
|
| m_frameBackgroundHasAlpha(false),
|
|
|