OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, Google Inc. All rights reserved. | 2 * Copyright (C) 2011, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are met: | 5 * modification, are permitted provided that the following conditions are met: |
6 * | 6 * |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 13 matching lines...) Expand all Loading... |
24 */ | 24 */ |
25 | 25 |
26 // https://w3c.github.io/gamepad/extensions.html#gamepadhand-enum | 26 // https://w3c.github.io/gamepad/extensions.html#gamepadhand-enum |
27 enum GamepadHand { | 27 enum GamepadHand { |
28 "left", | 28 "left", |
29 "right" | 29 "right" |
30 }; | 30 }; |
31 | 31 |
32 // https://w3c.github.io/gamepad/#gamepad-interface | 32 // https://w3c.github.io/gamepad/#gamepad-interface |
33 interface Gamepad { | 33 interface Gamepad { |
34 readonly attribute DOMString id; | 34 [Measure] readonly attribute DOMString id; |
35 readonly attribute unsigned long index; | 35 [Measure] readonly attribute unsigned long index; |
36 readonly attribute boolean connected; | 36 [Measure] readonly attribute boolean connected; |
37 readonly attribute unsigned long long timestamp; | 37 [Measure] readonly attribute unsigned long long timestamp; |
38 readonly attribute DOMString mapping; | 38 [Measure] readonly attribute DOMString mapping; |
39 // https://github.com/w3c/gamepad/issues/28 | 39 // https://github.com/w3c/gamepad/issues/28 |
40 readonly attribute double[] axes; | 40 [Measure] readonly attribute double[] axes; |
41 readonly attribute GamepadButton[] buttons; | 41 [Measure] readonly attribute GamepadButton[] buttons; |
42 | 42 |
43 [OriginTrialEnabled=GamepadExtensions, MeasureAs=GamepadPose] readonly attri
bute GamepadPose? pose; | 43 [OriginTrialEnabled=GamepadExtensions, MeasureAs=GamepadPose] readonly attri
bute GamepadPose? pose; |
44 [OriginTrialEnabled=GamepadExtensions, MeasureAs=GamepadHand] readonly attri
bute GamepadHand hand; | 44 [OriginTrialEnabled=GamepadExtensions, MeasureAs=GamepadHand] readonly attri
bute GamepadHand hand; |
45 | 45 |
46 // https://w3c.github.io/webvr/#interface-gamepad | 46 // https://w3c.github.io/webvr/#interface-gamepad |
47 [OriginTrialEnabled=GamepadExtensions, MeasureAs=GamepadDisplayId] readonly
attribute unsigned long displayId; | 47 [OriginTrialEnabled=GamepadExtensions, MeasureAs=GamepadDisplayId] readonly
attribute unsigned long displayId; |
48 }; | 48 }; |
OLD | NEW |