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

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

Issue 2777203006: Added auto-scan, made some small changes to how prefs are stored, refactored. (Closed)
Patch Set: Responding to comments. Refactored tree_walker. Removed testable_tree_walker. 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",
16 "keyboard_handler.js",
17 "tree_walker.js",
15 "switch_access.js", 18 "switch_access.js",
16 "background.js" 19 "background.js"
17 ] 20 ]
18 }, 21 },
19 "permissions": [ 22 "permissions": [
20 "accessibilityPrivate", 23 "accessibilityPrivate",
21 "storage", 24 "storage",
22 "tabs" 25 "tabs"
23 ], 26 ],
24 "automation": { 27 "automation": {
25 "desktop": true 28 "desktop": true
26 } 29 }
27 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698