| 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 22 matching lines...) Expand all Loading... |
| 33 interface Gamepad { | 33 interface Gamepad { |
| 34 readonly attribute DOMString id; | 34 readonly attribute DOMString id; |
| 35 readonly attribute unsigned long index; | 35 readonly attribute unsigned long index; |
| 36 readonly attribute boolean connected; | 36 readonly attribute boolean connected; |
| 37 readonly attribute unsigned long long timestamp; | 37 readonly attribute unsigned long long timestamp; |
| 38 readonly attribute DOMString mapping; | 38 readonly attribute DOMString mapping; |
| 39 readonly attribute double[] axes; | 39 readonly attribute double[] axes; |
| 40 readonly attribute GamepadButton[] buttons; | 40 readonly attribute GamepadButton[] buttons; |
| 41 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadPose? pose; | 41 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadPose? pose; |
| 42 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadHand hand; | 42 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadHand hand; |
| 43 |
| 44 // https://w3c.github.io/webvr/#interface-gamepad |
| 45 [RuntimeEnabled=GamepadExtensions] readonly attribute unsigned long displayI
d; |
| 43 }; | 46 }; |
| OLD | NEW |