Index: third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp |
diff --git a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp |
index 824764c5534764548b2c1eaa4225592de2b26d5f..340e6cae4337514ee30345fa4d401e98cabc9a2a 100644 |
--- a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp |
+++ b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageDecoder.cpp |
@@ -83,7 +83,7 @@ int GIFImageDecoder::repetitionCount() const |
return m_repetitionCount; |
} |
-bool GIFImageDecoder::frameIsCompleteAtIndex(size_t index) const |
+bool GIFImageDecoder::frameIsFullyReceivedAtIndex(size_t index) const |
{ |
return m_reader && (index < m_reader->imagesCount()) && m_reader->frameContext(index)->isComplete(); |
Peter Kasting
2016/05/10 00:00:13
Hmm. This will always return false if decoding fa
aleksandar.stojiljkovic
2016/05/10 21:59:31
What would be the usage of returning "frame is ful
Peter Kasting
2016/05/11 00:33:02
We know we're not going to do any further updating
aleksandar.stojiljkovic
2016/05/11 11:05:15
The usage of this is in [1] - GraphicsContext::com
scroggo_chromium
2016/05/11 15:17:34
But it also will be used in crrev.com/1925533003 t
Peter Kasting
2016/05/11 18:29:34
The only reason we ever use low-quality filtering
aleksandar.stojiljkovic
2016/05/16 13:09:49
Done.
Clear now; failed() added to "fully received
|
} |