| Index: third_party/WebKit/Source/core/page/ChromeClient.h
|
| diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
|
| index 61c72c60367b7faae944151244f81f5cb9d9d27d..eefa2f38dff70e98f4d5775b2ac170689b7995b0 100644
|
| --- a/third_party/WebKit/Source/core/page/ChromeClient.h
|
| +++ b/third_party/WebKit/Source/core/page/ChromeClient.h
|
| @@ -352,6 +352,13 @@ class CORE_EXPORT ChromeClient : public HostWindow {
|
|
|
| virtual WebLayerTreeView* GetWebLayerTreeView(LocalFrame*) { return nullptr; }
|
|
|
| + virtual void RequestDecode(
|
| + LocalFrame*,
|
| + sk_sp<SkImage> image,
|
| + std::unique_ptr<WTF::Function<void(bool)>> callback) {
|
| + (*callback)(false);
|
| + }
|
| +
|
| DECLARE_TRACE();
|
|
|
| protected:
|
|
|