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

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

Issue 2878363003: Revert of Fix ImageAnimation constant names after Blink renaming (Closed)
Patch Set: 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/ico/ICOImageDecoderTest.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
index 37bd35dadb28c6d5d2401fa9a0e5fbf633123710..576710e8942bc8b2165a62d2e2d863029c402fe8 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
@@ -70,22 +70,22 @@
TEST(ICOImageDecoderTests, parseAndDecodeByteByByte) {
TestByteByByteDecode(&CreateDecoder,
"/LayoutTests/images/resources/png-in-ico.ico", 1u,
- kAnimationNone);
+ kCAnimationNone);
TestByteByByteDecode(&CreateDecoder,
"/LayoutTests/images/resources/2entries.ico", 2u,
- kAnimationNone);
+ kCAnimationNone);
TestByteByByteDecode(&CreateDecoder,
"/LayoutTests/images/resources/greenbox-3frames.cur", 3u,
- kAnimationNone);
+ kCAnimationNone);
TestByteByByteDecode(
&CreateDecoder,
"/LayoutTests/images/resources/icon-without-and-bitmap.ico", 1u,
- kAnimationNone);
+ kCAnimationNone);
TestByteByByteDecode(&CreateDecoder, "/LayoutTests/images/resources/1bit.ico",
- 1u, kAnimationNone);
+ 1u, kCAnimationNone);
TestByteByByteDecode(&CreateDecoder,
"/LayoutTests/images/resources/bug653075.ico", 2u,
- kAnimationNone);
+ kCAnimationNone);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698