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

Unified Diff: Source/core/platform/graphics/chromium/DeferredImageDecoderTest.cpp

Issue 23068027: Animated WebP: Optimize decoding in case of seeking (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@add_noblend_image
Patch Set: comment Created 7 years, 4 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: Source/core/platform/graphics/chromium/DeferredImageDecoderTest.cpp
diff --git a/Source/core/platform/graphics/chromium/DeferredImageDecoderTest.cpp b/Source/core/platform/graphics/chromium/DeferredImageDecoderTest.cpp
index 78857c85606c8b8fe9efad441fb046069484df29..cc038300b1c75f81ecb885bc7ef9ebef616de0ed 100644
--- a/Source/core/platform/graphics/chromium/DeferredImageDecoderTest.cpp
+++ b/Source/core/platform/graphics/chromium/DeferredImageDecoderTest.cpp
@@ -112,7 +112,7 @@ public:
return m_repetitionCount;
}
- virtual ImageFrame::FrameStatus frameStatus()
+ virtual ImageFrame::Status frameStatus()
{
return m_frameStatus;
}
@@ -132,7 +132,7 @@ protected:
RefPtr<SharedBuffer> m_data;
size_t m_frameCount;
int m_repetitionCount;
- ImageFrame::FrameStatus m_frameStatus;
+ ImageFrame::Status m_frameStatus;
Peter Kasting 2013/08/23 01:14:02 Nit: Name this m_status (same everywhere else in t
urvang (Google) 2013/08/23 02:34:31 Done.
float m_frameDuration;
};

Powered by Google App Engine
This is Rietveld 408576698