diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-01-04 14:17:57 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-01-05 10:05:06 +0000 |
commit | 39d357e3248f80abea0159765ff39554affb40db (patch) | |
tree | aba0e6bfb76de0244bba0f5fdbd64b830dd6e621 /chromium/ppapi/api/ppb_input_event.idl | |
parent | 87778abf5a1f89266f37d1321b92a21851d8244d (diff) | |
download | qtwebengine-chromium-39d357e3248f80abea0159765ff39554affb40db.tar.gz |
BASELINE: Update Chromium to 55.0.2883.105
And updates ninja to 1.7.2
Change-Id: I20d43c737f82764d857ada9a55586901b18b9243
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/ppapi/api/ppb_input_event.idl')
-rw-r--r-- | chromium/ppapi/api/ppb_input_event.idl | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/chromium/ppapi/api/ppb_input_event.idl b/chromium/ppapi/api/ppb_input_event.idl index b9224fa584a..b737a2e4832 100644 --- a/chromium/ppapi/api/ppb_input_event.idl +++ b/chromium/ppapi/api/ppb_input_event.idl @@ -10,7 +10,8 @@ label Chrome { M13 = 1.0, M14 = 1.1, - M34 = 1.2 + M34 = 1.2, + M55 = 1.3 }; /** @@ -68,10 +69,6 @@ enum PP_InputEvent_Type { * * Register for this event using the PP_INPUTEVENT_CLASS_KEYBOARD class. */ - - /* - * TODO(brettw) differentiate from KEYDOWN. - */ PP_INPUTEVENT_TYPE_RAWKEYDOWN = 6, /** @@ -199,7 +196,11 @@ enum PP_InputEvent_Modifier { PP_INPUTEVENT_MODIFIER_CAPSLOCKKEY = 1 << 9, PP_INPUTEVENT_MODIFIER_NUMLOCKKEY = 1 << 10, PP_INPUTEVENT_MODIFIER_ISLEFT = 1 << 11, - PP_INPUTEVENT_MODIFIER_ISRIGHT = 1 << 12 + PP_INPUTEVENT_MODIFIER_ISRIGHT = 1 << 12, + [version=1.3] + PP_INPUTEVENT_MODIFIER_ISPEN = 1 << 13, + [version=1.3] + PP_INPUTEVENT_MODIFIER_ISERASER = 1 << 14 }; /** @@ -573,9 +574,6 @@ interface PPB_MouseInputEvent { */ [returnByValue] PP_Point GetPosition([in] PP_Resource mouse_event); - /* - * TODO(brettw) figure out exactly what this means. - */ int32_t GetClickCount([in] PP_Resource mouse_event); /** |