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

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

Issue 2523943002: Explicitly specify target color space to ImageDecoder at creation (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 a38dfd5f6cbf97af42bed22dcc2b3e3b55e04b7c..9b83e69fb5bc70b0acb3889b50f5fb4f8b3b1029 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
@@ -14,9 +14,10 @@ namespace blink {
namespace {
std::unique_ptr<ImageDecoder> createDecoder() {
- return wrapUnique(new ICOImageDecoder(ImageDecoder::AlphaNotPremultiplied,
- ImageDecoder::ColorSpaceApplied,
- ImageDecoder::noDecodedImageByteLimit));
+ return wrapUnique(new ICOImageDecoder(
+ ImageDecoder::AlphaNotPremultiplied, ImageDecoder::ColorSpaceTransformed,
+ ImageDecoder::targetColorSpaceForTesting(),
+ ImageDecoder::noDecodedImageByteLimit));
}
}

Powered by Google App Engine
This is Rietveld 408576698