| 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 28805ba533d3b7316a7902b686462c45d4bd2e06..6cb8d72f4976d0ebba3e917c2ae7a59d98490790 100644
|
| --- a/third_party/WebKit/public/platform/WebEventListenerProperties.h
|
| +++ b/third_party/WebKit/public/platform/WebEventListenerProperties.h
|
| @@ -10,17 +10,20 @@
|
| namespace blink {
|
|
|
| enum class WebEventListenerClass {
|
| - TouchStartOrMove, // This value includes "touchstart", "touchmove" and "pointer" events.
|
| + TouchStartOrMove, // 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.
|
| +// Indicates the variety of event listener types for a given
|
| +// WebEventListenerClass.
|
| enum class WebEventListenerProperties {
|
| - Nothing, // This should be "None"; but None #defined in X11's X.h
|
| - Passive, // This indicates solely passive listeners.
|
| - Blocking, // This indicates solely blocking listeners.
|
| - BlockingAndPassive, // This indicates >= 1 blocking listener and >= 1 passive listeners.
|
| + Nothing, // This should be "None"; but None #defined in X11's X.h
|
| + Passive, // This indicates solely passive listeners.
|
| + Blocking, // This indicates solely blocking listeners.
|
| + BlockingAndPassive, // This indicates >= 1 blocking listener and >= 1 passive
|
| + // listeners.
|
| };
|
|
|
| } // namespace blink
|
|
|