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

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

Issue 1884863003: Non passive touch end or touch cancel listeners should not block scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust comments Created 4 years, 8 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 b30580322c47a8beb9f77af944169302586e96f5..d6fd07555d8c9c93cdfec7644c4c78fd48f1c93d 100644
--- a/third_party/WebKit/Source/core/loader/EmptyClients.h
+++ b/third_party/WebKit/Source/core/loader/EmptyClients.h
@@ -155,10 +155,11 @@ public:
void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {}
+ void setHasTouchEventListeners(bool) override {}
void setEventListenerProperties(WebEventListenerClass, WebEventListenerProperties) override {}
WebEventListenerProperties eventListenerProperties(WebEventListenerClass) const override { return WebEventListenerProperties::Nothing; }
- void setHaveScrollEventHandlers(bool) override {}
- bool haveScrollEventHandlers() const override { return false; }
+ void setHasScrollEventHandlers(bool) override {}
+ bool hasScrollEventHandlers() const override { return false; }
void setTouchAction(TouchAction) override {}

Powered by Google App Engine
This is Rietveld 408576698