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 e2cb1bbf74e30006fe4fb54046b396afced56647..7f51363955cd1ef630f79e1fbf83cbb89c36418a 100644 |
--- a/third_party/WebKit/Source/core/page/ChromeClient.h |
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h |
@@ -350,6 +350,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: |