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

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

Issue 2837023004: Moved code dealing with accessibility tree from switch_access.js to new file, automation_manager.js (Closed)
Patch Set: Small documentation change Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 {% if key is defined %} 2 {% if key is defined %}
3 "key": "{{key}}", 3 "key": "{{key}}",
4 {% endif %} 4 {% endif %}
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "name": "TODO: Translated Switch access name", 6 "name": "TODO: Translated Switch access name",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "TODO: Translated Switch access description", 8 "description": "TODO: Translated Switch access description",
9 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
10 "incognito": "split", 10 "incognito": "split",
11 {% endif %} 11 {% endif %}
12 "background": { 12 "background": {
13 "scripts": [ 13 "scripts": [
14 "prefs.js", 14 "prefs.js",
15 "auto_scan_manager.js", 15 "auto_scan_manager.js",
16 "automation_manager.js",
16 "keyboard_handler.js", 17 "keyboard_handler.js",
17 "tree_walker.js", 18 "tree_walker.js",
18 "switch_access.js", 19 "switch_access.js",
19 "background.js" 20 "background.js"
20 ] 21 ]
21 }, 22 },
22 "permissions": [ 23 "permissions": [
23 "accessibilityPrivate", 24 "accessibilityPrivate",
24 "storage", 25 "storage",
25 "tabs" 26 "tabs"
26 ], 27 ],
27 "automation": { 28 "automation": {
28 "desktop": true 29 "desktop": true
29 } 30 }
30 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698