Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: third_party/WebKit/Source/modules/gamepad/Gamepad.idl

Issue 2380383003: Use sequence<T> instead of T[] where possible and document exceptions (Closed)
Patch Set: more Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 18 matching lines...) Expand all
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 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 // https://github.com/w3c/gamepad/issues/28
39 readonly attribute double[] axes; 40 readonly attribute double[] axes;
40 readonly attribute GamepadButton[] buttons; 41 readonly attribute GamepadButton[] buttons;
41 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadPose? pose; 42 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadPose? pose;
42 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadHand hand; 43 [RuntimeEnabled=GamepadExtensions] readonly attribute GamepadHand hand;
43 44
44 // https://w3c.github.io/webvr/#interface-gamepad 45 // https://w3c.github.io/webvr/#interface-gamepad
45 [RuntimeEnabled=GamepadExtensions] readonly attribute unsigned long displayI d; 46 [RuntimeEnabled=GamepadExtensions] readonly attribute unsigned long displayI d;
46 }; 47 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698