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

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

Issue 2454123002: Refactor image decoders to use 'colorSpace' instead of 'colorProfile' (Closed)
Patch Set: Fix legacy ImageFrame Created 4 years, 2 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 3b3bc1395a0e6cc44fda370e2bc77ef1b99ba19d..26567a28e2ae75c48ede0b2f5e0c4f7daac7909f 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
@@ -14,10 +14,9 @@ namespace blink {
namespace {
std::unique_ptr<ImageDecoder> createDecoder() {
- return wrapUnique(
- new ICOImageDecoder(ImageDecoder::AlphaNotPremultiplied,
- ImageDecoder::GammaAndColorProfileApplied,
- ImageDecoder::noDecodedImageByteLimit));
+ return wrapUnique(new ICOImageDecoder(ImageDecoder::AlphaNotPremultiplied,
+ ImageDecoder::ColorSpaceApplied,
+ ImageDecoder::noDecodedImageByteLimit));
}
}

Powered by Google App Engine
This is Rietveld 408576698