| Index: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| index 25c2a686736e20807710278f61da12646ff56662..437d36b947febb5a8027e01c433a0c3273868ffe 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| @@ -900,9 +900,7 @@ String AXLayoutObject::imageDataUrl(const IntSize& maxSize) const {
|
| if (!bitmapImage)
|
| return String();
|
|
|
| - // TODO(ccameron): AXLayoutObject::imageDataUrl should create sRGB images.
|
| - sk_sp<SkImage> image = bitmapImage->imageForCurrentFrame(
|
| - ColorBehavior::transformToGlobalTarget());
|
| + sk_sp<SkImage> image = bitmapImage->imageForCurrentFrame();
|
| if (!image || image->width() <= 0 || image->height() <= 0)
|
| return String();
|
|
|
|
|