Chromium Code Reviews| Index: chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json |
| diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json b/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json |
| index 3f885ccd7369c6bee24cfbd1255d1c49eea42fa4..7fc7d8eb1bfe8ac6c0dad26d50e36c31cf444559 100644 |
| --- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json |
| +++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json |
| @@ -1,7 +1,7 @@ |
| { |
| "bindings": [ |
| { |
| - "command": "previousElement", |
| + "command": "previousObject", |
|
David Tseng
2016/01/08 21:39:32
You'll have to change these in the manifest as wel
dmazzoni
2016/01/11 22:04:06
OK, done. Most of the other commands aren't in the
David Tseng
2016/01/12 19:24:42
Yes though we're pretty constrained in the types o
|
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -19,7 +19,7 @@ |
| } |
| }, |
| { |
| - "command": "nextElement", |
| + "command": "nextObject", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -98,7 +98,7 @@ |
| } |
| }, |
| { |
| - "command": "nextCheckBox", |
| + "command": "nextCheckbox", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -107,7 +107,7 @@ |
| } |
| }, |
| { |
| - "command": "previousCheckBox", |
| + "command": "previousCheckbox", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -117,7 +117,7 @@ |
| } |
| }, |
| { |
| - "command": "nextCombobox", |
| + "command": "nextComboBox", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -126,7 +126,7 @@ |
| } |
| }, |
| { |
| - "command": "previousCombobox", |
| + "command": "previousComboBox", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -250,7 +250,7 @@ |
| } |
| }, |
| { |
| - "command": "goToEnd", |
| + "command": "jumpToBottom", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -260,7 +260,7 @@ |
| } |
| }, |
| { |
| - "command": "goToBeginning", |
| + "command": "jumpToTop", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -270,7 +270,7 @@ |
| } |
| }, |
| { |
| - "command": "doDefault", |
| + "command": "performDefaultAction", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -279,7 +279,7 @@ |
| } |
| }, |
| { |
| - "command": "showContextMenu", |
| + "command": "contextMenu", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -289,7 +289,7 @@ |
| } |
| }, |
| { |
| - "command": "continuousRead", |
| + "command": "readFromHere", |
| "sequence": { |
| "cvoxModifier": true, |
| "keys": { |
| @@ -325,6 +325,61 @@ |
| }, |
| "doubleTap": true |
| } |
| + }, |
| + { |
| + "command": "openChromeVoxMenus", |
| + "sequence": { |
| + "cvoxModifier": true, |
| + "keys": { |
| + "keyCode": [190] |
| + } |
| + } |
| + }, |
| + { |
| + "command": "stopSpeech", |
| + "sequence": { |
| + "cvoxModifier": false, |
| + "keys": { |
| + "ctrlKey": [true], |
| + "keyCode": [17] |
| + } |
| + } |
| + }, |
| + { |
| + "command": "decreaseTtsRate", |
| + "sequence": { |
| + "cvoxModifier": true, |
| + "keys": { |
| + "keyCode": [219] |
| + } |
| + } |
| + }, |
| + { |
| + "command": "increaseTtsRate", |
| + "sequence": { |
| + "cvoxModifier": true, |
| + "keys": { |
| + "keyCode": [221] |
| + } |
| + } |
| + }, |
| + { |
| + "command": "decreaseTtsPitch", |
| + "sequence": { |
| + "cvoxModifier": true, |
| + "keys": { |
| + "keyCode": [186] |
| + } |
| + } |
| + }, |
| + { |
| + "command": "increaseTtsPitch", |
| + "sequence": { |
| + "cvoxModifier": true, |
| + "keys": { |
| + "keyCode": [222] |
| + } |
| + } |
| } |
| ] |
| } |