Index: third_party/WebKit/Source/platform/DragImage.cpp |
diff --git a/third_party/WebKit/Source/platform/DragImage.cpp b/third_party/WebKit/Source/platform/DragImage.cpp |
index c4cbd565dc0bbe9c09f70d9aea48cad7add89788..76047fa1191388a8bbb0f14ebdb1b5f0d92815c1 100644 |
--- a/third_party/WebKit/Source/platform/DragImage.cpp |
+++ b/third_party/WebKit/Source/platform/DragImage.cpp |
@@ -150,7 +150,10 @@ std::unique_ptr<DragImage> DragImage::create( |
if (!image) |
return nullptr; |
- sk_sp<SkImage> skImage = image->imageForCurrentFrame(); |
+ // TODO(ccameron): DragImage needs to be color space aware. |
+ // https://crbug.com/672316 |
+ sk_sp<SkImage> skImage = |
+ image->imageForCurrentFrame(ColorBehavior::transformToGlobalTarget()); |
if (!skImage) |
return nullptr; |