| Index: third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
|
| index ef2397f1a96d920cbd388aeb7c6f84607541915e..e49a211d0fa5d792fe612c040eb7fb8c87456ac1 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
|
| @@ -710,13 +710,9 @@ void term_source(j_decompress_ptr jd) {
|
| }
|
|
|
| JPEGImageDecoder::JPEGImageDecoder(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) {}
|
|
|
| JPEGImageDecoder::~JPEGImageDecoder() {}
|
|
|
|
|