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

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

Issue 536233002: Begin introducing some of the initial pieces for ChromeVox next commands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chromeos_conversions
Patch Set: Rebase. Created 6 years, 3 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/chromevox2/chromevox.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
diff --git a/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2 b/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
index 25b2cd5604eb2a4bed657f6bedac07a079647500..fe045189c2044ccb858fb0cb6e5feaac1595693b 100644
--- a/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
+++ b/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
@@ -20,6 +20,9 @@
"accessibilityPrivate",
"bookmarks",
"brailleDisplayPrivate",
+{% if use_chromevox_next == '1' %}
+ "commands.accessibility",
+{% endif %}
"commandLinePrivate",
"experimental",
"history",
@@ -36,14 +39,7 @@
"exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/background/background.html" ],
"all_frames": true,
"js": [
-{% if use_chromevox_next == '1' %}
- "closure/closure_preinit.js",
- "closure/base.js",
- "deps.js",
- "cvox2/injected/loader.js"
-{% else %}
"chromeVoxChromePageScript.js"
-{% endif %}
]
}
],
@@ -57,6 +53,32 @@
"automation": {
"desktop": true
},
+ "commands": {
+ "nextElement": {
+ "description": "Moves to the next element",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Right"
+ }
+ },
+ "previousElement": {
+ "description": "Moves to the previous element",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Left"
+ }
+ },
+ "nextLine": {
+ "description": "Moves to the next line",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Down"
+ }
+ },
+ "previousLine": {
+ "description": "Moves to the previous line",
+ "suggested_key": {
+ "chromeos": "Search+Shift+Up"
+ }
+ }
+ },
{% endif %}
"default_locale": "en"
}
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox2/chromevox.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698