Chromium Code Reviews| Index: chrome/browser/resources/chromeos/switch_access/keyboard_handler.js |
| diff --git a/chrome/browser/resources/chromeos/switch_access/keyboard_handler.js b/chrome/browser/resources/chromeos/switch_access/keyboard_handler.js |
| index 8d9b1511c4f89fa639f9347cf03d683b56d608cf..eb407b524a4a8804ff073e16671044046b66cefb 100644 |
| --- a/chrome/browser/resources/chromeos/switch_access/keyboard_handler.js |
| +++ b/chrome/browser/resources/chromeos/switch_access/keyboard_handler.js |
| @@ -28,6 +28,9 @@ KeyboardHandler.prototype = { |
| * @private |
| */ |
| init_: function() { |
| + // Capture keycodes for keys 1 through 4, and 6 through 9. |
| + chrome.accessibilityPrivate.setSwitchAccessKeys( |
| + [49, 50, 51, 52, 54, 55, 56, 57]); |
|
David Tseng
2017/05/26 22:10:31
Use ''.charCodeAt rather than hard coding the key
elichtenberg
2017/05/27 00:13:04
Done.
|
| document.addEventListener('keyup', this.handleKeyEvent_.bind(this)); |
| }, |