| Index: Source/core/platform/image-decoders/ImageDecoder.cpp
|
| diff --git a/Source/core/platform/image-decoders/ImageDecoder.cpp b/Source/core/platform/image-decoders/ImageDecoder.cpp
|
| index 7b9938bef26a49de668a09026e7e83e81be74534..619c31d3b28cd4dc015989a0bd0307f3b82e4e42 100644
|
| --- a/Source/core/platform/image-decoders/ImageDecoder.cpp
|
| +++ b/Source/core/platform/image-decoders/ImageDecoder.cpp
|
| @@ -88,7 +88,7 @@ PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data, ImageSou
|
| static const unsigned longestSignatureLength = sizeof("RIFF????WEBPVP") - 1;
|
| ASSERT(longestSignatureLength == 14);
|
|
|
| - size_t maxDecodedBytes = WebKit::Platform::current()->maxDecodedImageBytes();
|
| + size_t maxDecodedBytes = blink::Platform::current()->maxDecodedImageBytes();
|
|
|
| char contents[longestSignatureLength];
|
| if (copyFromSharedBuffer(contents, longestSignatureLength, data, 0) < longestSignatureLength)
|
|
|