Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Unified Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2479663002: Move compositor InputHandler from RenderViewImpl to RenderWidget. (Closed)
Patch Set: Rebase to master@{#445291}. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/EmptyClients.h
diff --git a/third_party/WebKit/Source/core/loader/EmptyClients.h b/third_party/WebKit/Source/core/loader/EmptyClients.h
index f18aaadc0a7695577709a3ab7a6ef52c5f23481e..09b2f8d33dc71554ddc5ddb9cc271584f6bf8de3 100644
--- a/third_party/WebKit/Source/core/loader/EmptyClients.h
+++ b/third_party/WebKit/Source/core/loader/EmptyClients.h
@@ -200,14 +200,16 @@ class CORE_EXPORT EmptyChromeClient : public ChromeClient {
void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override;
void attachRootLayer(WebLayer*, LocalFrame* localRoot) override {}
- void setEventListenerProperties(WebEventListenerClass,
+ void setEventListenerProperties(LocalFrame*,
+ WebEventListenerClass,
WebEventListenerProperties) override {}
WebEventListenerProperties eventListenerProperties(
- WebEventListenerClass) const override {
+ LocalFrame*,
+ WebEventListenerClass eventClass) const override {
return WebEventListenerProperties::Nothing;
}
- void setHasScrollEventHandlers(bool) override {}
- bool hasScrollEventHandlers() const override { return false; }
+ void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {}
+ void setHasScrollEventHandlers(LocalFrame*, bool) override {}
void setTouchAction(LocalFrame*, TouchAction) override {}

Powered by Google App Engine
This is Rietveld 408576698