Index: ppapi/api/ppb_input_event.idl |
diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl |
index b737a2e4832b7bacb66b7739c2ae1bf048833b5e..25d2afb4f1c20840f82ae2a49ebf9f0b97bc1cd6 100644 |
--- a/ppapi/api/ppb_input_event.idl |
+++ b/ppapi/api/ppb_input_event.idl |
@@ -281,7 +281,16 @@ enum PP_InputEvent_Class { |
* |
* Request this input event class if you allow on-the-spot IME input. |
*/ |
- PP_INPUTEVENT_CLASS_IME = 1 << 4 |
+ PP_INPUTEVENT_CLASS_IME = 1 << 4, |
+ |
+ /** |
+ * Identifies coalesced touch input events. |
+ * |
+ * Touch events are coalesced for each frame. By default, the coalesced touch |
+ * events will be dropped. Request this input event class if you intend to |
+ * handle all the touch events. |
+ */ |
+ PP_INPUTEVENT_CLASS_COALESCED_TOUCH = 1 << 5 |
}; |
/** |