Index: third_party/WebKit/public/web/WebInputEvent.h |
diff --git a/third_party/WebKit/public/web/WebInputEvent.h b/third_party/WebKit/public/web/WebInputEvent.h |
index 248e3d107b03b7112365499a279e921c8ea20337..86bafa8a8910992cf795b71781321779de5fb53d 100644 |
--- a/third_party/WebKit/public/web/WebInputEvent.h |
+++ b/third_party/WebKit/public/web/WebInputEvent.h |
@@ -172,6 +172,11 @@ public: |
// Left/right modifiers for keyboard events. |
IsLeft = 1 << 11, |
IsRight = 1 << 12, |
+ |
+ // Indicates that an event was generated on the touch screen while |
+ // touch accessibility is enabled, so the event should be handled |
+ // by accessibility code first before normal input event processing. |
+ IsTouchAccessibility = 1 << 13 |
}; |
// The rail mode for a wheel event specifies the axis on which scrolling is |