Index: ppapi/api/ppb_input_event.idl |
diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl |
index 76eb0916ab38b3deb0dfb77024b625002698cfc1..c541c50e1a5bf0de647ab573d2e27abe00e8ddf0 100644 |
--- a/ppapi/api/ppb_input_event.idl |
+++ b/ppapi/api/ppb_input_event.idl |
@@ -133,7 +133,35 @@ enum PP_InputEvent_Type { |
* |
* Register for this event using the PP_INPUTEVENT_CLASS_IME class. |
*/ |
- PP_INPUTEVENT_TYPE_IME_TEXT = 14 |
+ PP_INPUTEVENT_TYPE_IME_TEXT = 14, |
+ |
+ /** |
+ * Notification that a finger was placed on a touch-enabled device. |
+ * |
+ * Register for this event using the PP_INPUTEVENT_CLASS_TOUCH class. |
+ */ |
+ PP_INPUTEVENT_TYPE_TOUCHSTART = 15, |
+ |
+ /** |
+ * Notification that a finger was moved on a touch-enabled device. |
+ * |
+ * Register for this event using the PP_INPUTEVENT_CLASS_TOUCH class. |
+ */ |
+ PP_INPUTEVENT_TYPE_TOUCHMOVE = 16, |
+ |
+ /** |
+ * Notification that a finger was released on a touch-enabled device. |
+ * |
+ * Register for this event using the PP_INPUTEVENT_CLASS_TOUCH class. |
+ */ |
+ PP_INPUTEVENT_TYPE_TOUCHEND = 17, |
+ |
+ /** |
+ * Notification that a touch event was canceled. |
+ * |
+ * Register for this event using the PP_INPUTEVENT_CLASS_TOUCH class. |
+ */ |
+ PP_INPUTEVENT_TYPE_TOUCHCANCEL = 18 |
}; |
/** |