| Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| index 5fd217299c34517e0abd02572ce8519c90eb26f0..ba40bacdb245fd7a2502c6706b0933755db804ff 100644
|
| --- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| @@ -836,10 +836,10 @@ WebRemoteFrameBase* ChromeClientImpl::GetWebRemoteFrameBase(
|
|
|
| void ChromeClientImpl::RequestDecode(
|
| LocalFrame* frame,
|
| - sk_sp<SkImage> image,
|
| + const PaintImage& image,
|
| std::unique_ptr<WTF::Function<void(bool)>> callback) {
|
| WebLocalFrameImpl* web_frame = WebLocalFrameImpl::FromFrame(frame);
|
| - web_frame->LocalRoot()->FrameWidget()->RequestDecode(std::move(image),
|
| + web_frame->LocalRoot()->FrameWidget()->RequestDecode(image,
|
| std::move(callback));
|
| }
|
|
|
|
|