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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/gif/GIFImageReader.cpp

Issue 2884803002: Reland of Fix ImageAnimation constant names after Blink renaming (Closed)
Patch Set: Fixing accidental upstream Created 3 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/image-decoders/gif/GIFImageReader.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageReader.cpp b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageReader.cpp
index 720f6e6933ac076a75030456938baf8c4294e426..0d5b949738b7931ce434f51dabb6369762c8896a 100644
--- a/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageReader.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/gif/GIFImageReader.cpp
@@ -683,7 +683,7 @@ bool GIFImageReader::parseData(size_t dataPosition,
// Zero loop count is infinite animation loop request.
if (!m_loopCount)
- m_loopCount = blink::kCAnimationLoopInfinite;
+ m_loopCount = blink::kAnimationLoopInfinite;
GETN(1, GIFNetscapeExtensionBlock);
} else if (netscapeExtension == 2) {

Powered by Google App Engine
This is Rietveld 408576698