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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/next_keymap.json

Issue 1561773002: Implement ChromeVox Next menus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@panel_view_type
Patch Set: Fix Ozone by only activating panel when fullscreen Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
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 405a5d00c65f28d0bf521ce1245d01b32ee29b94..0442c0b1a1d5be6e18accc16e1ece235395edb8e 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",
"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": {
@@ -349,6 +349,61 @@
"shiftKey": [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]
+ }
+ }
}
]
}

Powered by Google App Engine
This is Rietveld 408576698