diff options
Diffstat (limited to 'ppapi/api/ppb_input_event.idl')
-rw-r--r-- | ppapi/api/ppb_input_event.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl index 98fa7b0..1f95a86 100644 --- a/ppapi/api/ppb_input_event.idl +++ b/ppapi/api/ppb_input_event.idl @@ -107,21 +107,21 @@ enum PP_InputEvent_Type { * * Register for this event using the PP_INPUTEVENT_CLASS_IME class. */ - PP_INPUTEVENT_TYPE_IME_COMPOSITION_START = 11, + PP_INPUTEVENT_TYPE_COMPOSITION_START = 11, /** * Notification that the input method composition string is updated. * * Register for this event using the PP_INPUTEVENT_CLASS_IME class. */ - PP_INPUTEVENT_TYPE_IME_COMPOSITION_UPDATE = 12, + PP_INPUTEVENT_TYPE_COMPOSITION_UPDATE = 12, /** * Notification that an input method composition process has completed. * * Register for this event using the PP_INPUTEVENT_CLASS_IME class. */ - PP_INPUTEVENT_TYPE_IME_COMPOSITION_END = 13, + PP_INPUTEVENT_TYPE_COMPOSITION_END = 13, /** * Notification that an input method committed a string. |