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

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

Issue 2352713004: Added displayId to Gamepad (Closed)
Patch Set: Re-upstream w/o webvr dependency Created 4 years, 3 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 22 matching lines...) Expand all
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 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/gamepad/Gamepad.cpp ('k') | third_party/WebKit/Source/modules/gamepad/NavigatorGamepad.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698