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

Unified Diff: third_party/WebKit/Source/platform/graphics/Image.h

Issue 1962563002: Fix ImageDecoder::frameIsCompleteAtIndex - fully received instead of decoded. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extending the scope with naming suggested by @scroggo Created 4 years, 7 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: third_party/WebKit/Source/platform/graphics/Image.h
diff --git a/third_party/WebKit/Source/platform/graphics/Image.h b/third_party/WebKit/Source/platform/graphics/Image.h
index 0f89990c4784fbf0465dab92cd3c8d84d085cf4a..d2b478be235cbba49e2479c3e130c64954972ec3 100644
--- a/third_party/WebKit/Source/platform/graphics/Image.h
+++ b/third_party/WebKit/Source/platform/graphics/Image.h
@@ -79,7 +79,7 @@ public:
enum MetadataMode { UseCurrentMetadata, PreCacheMetadata };
virtual bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) = 0;
- virtual bool currentFrameIsComplete() { return false; }
+ virtual bool currentFrameIsFullyReceived() { return false; }
virtual bool currentFrameIsLazyDecoded() { return false; }
virtual bool isTextureBacked();

Powered by Google App Engine
This is Rietveld 408576698