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

Unified Diff: chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2

Issue 2690063004: Tried to add keyboard shortcuts to trigger switch access commands. Maybe missing a permission.
Patch Set: Created 3 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/switch_access/switch_access.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2
diff --git a/chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2 b/chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2
index 2ad774dd942ad6f10552152a42a38696d0632fb6..0a8e656b58ec6bedeb68e28989869a04eb9d3562 100644
--- a/chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2
+++ b/chrome/browser/resources/chromeos/switch_access/manifest.json.jinja2
@@ -15,9 +15,33 @@
]
},
"permissions": [
- "accessibilityPrivate"
+ "accessibilityPrivate",
+ "commands.accessibility"
],
"automation": {
"desktop": true
+ },
+ "commands": {
+ "previousItem": {
+ "description": "Move to the previous item",
+ "suggested_key": {
+ "default": "Alt+B",
+ "chromeos": "Ctrl+Shift+1"
+ }
+ },
+ "nextItem": {
+ "description": "Move to the next item",
+ "suggested_key": {
+ "default": "Alt+N",
+ "chromeos": "Ctrl+Shift+2"
+ }
+ },
+ "selectItem": {
+ "description": "Select the highlighted item",
+ "suggested_key": {
+ "default": "Alt+M",
+ "chromeos": "Ctrl+Shift+U"
+ }
+ }
}
}
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/switch_access/switch_access.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698