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

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: 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
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..8d06fa38c0a1d52407b76b151da479591e18b05d 100644
--- a/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
+++ b/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
@@ -20,7 +20,8 @@
"accessibilityPrivate",
"bookmarks",
"brailleDisplayPrivate",
- "commandLinePrivate",
+ "commands.accessibility",
+"commandLinePrivate",
dmazzoni 2014/09/04 15:55:42 nit: indentation
David Tseng 2014/09/04 18:37:43 Done.
"experimental",
"history",
"storage",
@@ -36,14 +37,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 +51,36 @@
"automation": {
"desktop": true
},
+ "commands": {
+ "nextElement": {
+ "description": "Moves to the next element",
+ "global": true,
+ "suggested_key": {
+ "chromeos": "Search+Shift+Right"
+ }
+ },
+ "previousElement": {
+ "description": "Moves to the previous element",
+ "global": true,
+ "suggested_key": {
+ "chromeos": "Search+Shift+Left"
+ }
+ },
+ "nextLine": {
+ "description": "Moves to the next line",
+ "global": true,
+ "suggested_key": {
+ "chromeos": "Search+Shift+Down"
+ }
+ },
+ "previousLine": {
+ "description": "Moves to the previous line",
+ "global": true,
+ "suggested_key": {
+ "chromeos": "Search+Shift+Up"
+ }
+ }
+ },
{% endif %}
"default_locale": "en"
}

Powered by Google App Engine
This is Rietveld 408576698