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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp

Issue 2982083002: FrameIsCompleteAtIndex to FrameIsReceivedAtIndex (Closed)
Patch Set: Update upstack from ImageDecoder Created 3 years, 5 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/image-decoders/ico/ICOImageDecoder.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp
index ad122f2d86d6a47a44902aadf0342bc3a82a52bf..3817ff7aa5092ff1522844798e4421938117ce08 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.cpp
@@ -82,7 +82,7 @@ bool ICOImageDecoder::SetSize(unsigned width, unsigned height) {
: ((IntSize(width, height) == frame_size_) || SetFailed());
}
-bool ICOImageDecoder::FrameIsCompleteAtIndex(size_t index) const {
+bool ICOImageDecoder::FrameIsReceivedAtIndex(size_t index) const {
if (index >= dir_entries_.size())
return false;
const IconDirectoryEntry& dir_entry = dir_entries_[index];

Powered by Google App Engine
This is Rietveld 408576698