| Index: third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp b/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp
|
| index 1411c494248a4a21170f245dc5e8aaa5899035ae..03ca9b2cef22c4cae1967c003bca17facf5ec44b 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/DeferredImageDecoder.cpp
|
| @@ -102,7 +102,7 @@ PassRefPtr<SkImage> DeferredImageDecoder::createFrameAtIndex(size_t index)
|
| return nullptr;
|
|
|
| ImageFrame* frame = m_actualDecoder->frameBufferAtIndex(index);
|
| - if (!frame || frame->status() == ImageFrame::FrameEmpty)
|
| + if (!frame || frame->getStatus() == ImageFrame::FrameEmpty)
|
| return nullptr;
|
|
|
| return adoptRef(SkImage::NewFromBitmap(frame->bitmap()));
|
|
|