Chromium Code Reviews| 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" |
| } |