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..fdd4db15ffc210ffeb4f0b9b03551f92a66f3b3b 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2 |
+++ b/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2 |
@@ -20,6 +20,7 @@ |
"accessibilityPrivate", |
"bookmarks", |
"brailleDisplayPrivate", |
+ "commands.accessibility", |
Peter Lundblad
2014/09/05 07:21:54
Should this not be conditioned on chromevox_next?
David Tseng
2014/09/08 19:24:34
Done.
|
"commandLinePrivate", |
"experimental", |
"history", |
@@ -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", |
Peter Lundblad
2014/09/05 07:21:54
Either a TODO or ideally don't defer i18n here. Y
David Tseng
2014/09/08 19:24:34
Acknowledged.
|
+ "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" |
} |