Chromium Code Reviews| Index: Source/modules/gamepad/Gamepad.idl |
| diff --git a/Source/modules/gamepad/Gamepad.idl b/Source/modules/gamepad/Gamepad.idl |
| index 0645324fd719555dfb332be2a08023512c6c83e4..259768a52153e302337567802eaa9fe9c2211915 100644 |
| --- a/Source/modules/gamepad/Gamepad.idl |
| +++ b/Source/modules/gamepad/Gamepad.idl |
| @@ -24,8 +24,7 @@ |
| */ |
| [ |
| - WillBeGarbageCollected, |
| - NoInterfaceObject |
| + WillBeGarbageCollected |
|
Nils Barth (inactive)
2014/03/13 02:40:17
Add trailing comma.
|
| ] interface Gamepad { |
| readonly attribute DOMString id; |
| readonly attribute unsigned long index; |
| @@ -33,6 +32,6 @@ |
| readonly attribute unsigned long long timestamp; |
| readonly attribute DOMString mapping; |
| readonly attribute float[] axes; |
| - readonly attribute float[] buttons; |
| + readonly attribute GamepadButton[] buttons; |
| }; |
|
Nils Barth (inactive)
2014/03/13 02:40:17
Remove trailing newline.
|