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

Unified Diff: Source/platform/graphics/ImageSource.cpp

Issue 1308233002: Remove external BitmapImage lazy decoding tracking (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/platform/graphics/ImageSource.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/ImageSource.cpp
diff --git a/Source/platform/graphics/ImageSource.cpp b/Source/platform/graphics/ImageSource.cpp
index c441f8acefc2645a54abb061221822337469846e..2fbb2f15ee6b009d41118f71cf7f92b71b1ad1c3 100644
--- a/Source/platform/graphics/ImageSource.cpp
+++ b/Source/platform/graphics/ImageSource.cpp
@@ -143,11 +143,6 @@ bool ImageSource::frameIsCompleteAtIndex(size_t index) const
return m_decoder && m_decoder->frameIsCompleteAtIndex(index);
}
-bool ImageSource::frameIsLazyDecodedAtIndex(size_t index) const
-{
- return m_decoder && m_decoder->frameIsCachedAndLazyDecodedAtIndex(index);
-}
-
size_t ImageSource::frameBytesAtIndex(size_t index) const
{
return m_decoder ? m_decoder->frameBytesAtIndex(index) : 0;
« no previous file with comments | « Source/platform/graphics/ImageSource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698