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

Unified Diff: third_party/WebKit/public/platform/WebEventListenerProperties.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: 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/public/platform/WebEventListenerProperties.h
diff --git a/third_party/WebKit/public/platform/WebEventListenerProperties.h b/third_party/WebKit/public/platform/WebEventListenerProperties.h
index 1b2d9a05402f8d817e9b9b2f2d8fa7207aa669ec..60186962cad437782fb7371b562691acfdb3fbbf 100644
--- a/third_party/WebKit/public/platform/WebEventListenerProperties.h
+++ b/third_party/WebKit/public/platform/WebEventListenerProperties.h
@@ -10,8 +10,9 @@
namespace blink {
enum class WebEventListenerClass {
- Touch, // This value includes "pointer" events.
- MouseWheel // This value includes "wheel" and "mousewheel" events.
+ Touch, // This value includes "touchstart", "touchmove" and "pointer" events.
+ MouseWheel, // This value includes "wheel" and "mousewheel" events.
+ TouchEndOrCancel, // This value includes "touchend", "touchcancel" events.
};
// Indicates the variety of event listener types for a given WebEventListenerClass.

Powered by Google App Engine
This is Rietveld 408576698