OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // TODO(elichtenberg): Move into custom logger class or somewhere else. | 5 // TODO(elichtenberg): Move into custom logger class or somewhere else. |
6 let debuggingEnabled = true; | 6 let debuggingEnabled = true; |
7 | 7 |
8 /** | 8 /** |
9 * Class to handle keyboard input. | 9 * Class to handle keyboard input. |
10 * | 10 * |
(...skipping 11 matching lines...) Expand all Loading... |
22 } | 22 } |
23 | 23 |
24 KeyboardHandler.prototype = { | 24 KeyboardHandler.prototype = { |
25 /** | 25 /** |
26 * Set up key listener. | 26 * Set up key listener. |
27 * | 27 * |
28 * @private | 28 * @private |
29 */ | 29 */ |
30 init_: function() { | 30 init_: function() { |
31 // Capture keycodes for keys 1 through 4, and 6 through 9. | 31 // Capture keycodes for keys 1 through 4, and 6 through 9. |
32 let keyCodes = ['1', '2', '3', '4', '6', '7', '8', '9'].map( | 32 let keyCodes = |
33 key => key.charCodeAt(0)); | 33 ['1', '2', '3', '4', '6', '7', '8', '9'].map(key => key.charCodeAt(0)); |
34 chrome.accessibilityPrivate.setSwitchAccessKeys(keyCodes); | 34 chrome.accessibilityPrivate.setSwitchAccessKeys(keyCodes); |
35 document.addEventListener('keyup', this.handleKeyEvent_.bind(this)); | 35 document.addEventListener('keyup', this.handleKeyEvent_.bind(this)); |
36 }, | 36 }, |
37 | 37 |
38 /** | 38 /** |
39 * Handle a keyboard event by calling the appropriate SwitchAccess functions. | 39 * Handle a keyboard event by calling the appropriate SwitchAccess functions. |
40 * | 40 * |
41 * @param {!Event} event | 41 * @param {!Event} event |
42 * @private | 42 * @private |
43 */ | 43 */ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 break; | 75 break; |
76 case '9': | 76 case '9': |
77 console.log('9 = go to parent element (debug mode)'); | 77 console.log('9 = go to parent element (debug mode)'); |
78 this.switchAccess_.debugMoveToParent(); | 78 this.switchAccess_.debugMoveToParent(); |
79 break; | 79 break; |
80 } | 80 } |
81 } | 81 } |
82 this.switchAccess_.performedUserAction(); | 82 this.switchAccess_.performedUserAction(); |
83 } | 83 } |
84 }; | 84 }; |
OLD | NEW |