Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp

Issue 2021403002: Update libpng to 1.6.22 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac rebaselines Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
index d444caa0bf644e481d7a9f15e3952de5ec2c4397..151cded10509ff3f6e45b70a1aac8111ac2b9aec 100644
--- a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.cpp
@@ -184,7 +184,7 @@ void PNGImageDecoder::headerAvailable()
DEFINE_THREAD_SAFE_STATIC_LOCAL(blink::CustomCountHistogram,
dimensionsLocationHistogram,
new blink::CustomCountHistogram("Blink.DecodedImage.EffectiveDimensionsLocation.PNG", 0, 50000, 50));
- dimensionsLocationHistogram.count(m_reader->getReadOffset() - png->current_buffer_size - 1);
msarett 2016/06/03 20:18:51 @ryansturm libpng 1.6 has a stricter API that doe
RyanSturm 2016/06/03 20:31:51 You can remove the Blink.DecodedImage.EffectiveDim
msarett 2016/06/03 21:26:01 Got it thanks! It's been removed.
scroggo_chromium 2016/06/06 14:51:40 I suppose it's safe to remove the rest of them, to
+ dimensionsLocationHistogram.count(m_reader->getReadOffset() - 1);
// Protect against large PNGs. See http://bugzil.la/251381 for more details.
const unsigned long maxPNGSize = 1000000UL;
@@ -243,7 +243,7 @@ void PNGImageDecoder::headerAvailable()
#endif
png_uint_32 profileLength = 0;
if (png_get_iCCP(png, info, &profileName, &compressionType, &profile, &profileLength)) {
- setColorProfileAndTransform(profile, profileLength, imageHasAlpha, false /* useSRGB */);
+ setColorProfileAndTransform((char*) profile, profileLength, imageHasAlpha, false /* useSRGB */);
}
}
#endif // PNG_iCCP_SUPPORTED

Powered by Google App Engine
This is Rietveld 408576698