Chromium Code Reviews| Index: ppapi/api/ppb_input_event.idl |
| diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl |
| index b9224fa584ad4e47ef060249fb0f80b3f67d72f4..d3fac5734d4d0768bf7067b3625d45ccd0234941 100644 |
| --- a/ppapi/api/ppb_input_event.idl |
| +++ b/ppapi/api/ppb_input_event.idl |
| @@ -10,7 +10,8 @@ |
| label Chrome { |
| M13 = 1.0, |
| M14 = 1.1, |
| - M34 = 1.2 |
| + M34 = 1.2, |
| + M54 = 1.3 |
|
bbudge
2016/08/30 22:05:54
This doesn't actually version the API
I'm going t
denniskempin
2016/09/01 16:56:21
There is one problem that I could see:
Older ver
|
| }; |
| /** |
| @@ -199,7 +200,9 @@ 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, |
| + PP_INPUTEVENT_MODIFIER_ISPEN = 1 << 13, |
| + PP_INPUTEVENT_MODIFIER_ISERASER = 1 << 14 |
|
bbudge
2016/08/30 22:05:54
Annotate these both with [version=1.3] even though
denniskempin
2016/09/01 16:56:21
Acknowledged.
|
| }; |
| /** |