| Index: third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| diff --git a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| index 530aee3d338b7529ad0aed1f37fa86912648c35f..f91c96a353050f101bd784fac2137704d4046e66 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.cpp
|
| @@ -90,9 +90,9 @@ void NotificationImageLoader::didFinishLoading(unsigned long resourceIdentifier,
|
| DEFINE_THREAD_SAFE_STATIC_LOCAL(CustomCountHistogram, fileSizeHistogram, new CustomCountHistogram("Notifications.Icon.FileSize", 1, 10000000 /* ~10mb max */, 50 /* buckets */));
|
| fileSizeHistogram.count(m_data->size());
|
|
|
| - std::unique_ptr<ImageDecoder> decoder = ImageDecoder::create(ImageDecoder::determineImageType(*m_data.get()), ImageDecoder::AlphaPremultiplied, ImageDecoder::GammaAndColorProfileApplied);
|
| + std::unique_ptr<ImageDecoder> decoder = ImageDecoder::create(m_data, true /* dataComplete */,
|
| + ImageDecoder::AlphaPremultiplied, ImageDecoder::GammaAndColorProfileApplied);
|
| if (decoder) {
|
| - decoder->setData(m_data.get(), true /* allDataReceived */);
|
| // The |ImageFrame*| is owned by the decoder.
|
| ImageFrame* imageFrame = decoder->frameBufferAtIndex(0);
|
| if (imageFrame) {
|
|
|