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

Side by Side Diff: chrome/test/data/extensions/api_test/keybinding/global/manifest.json

Issue 350943003: Support global keyboard commands on Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test updates Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "An extension to test global shortcuts", 2 "name": "An extension to test global shortcuts",
3 "version": "1.0", 3 "version": "1.0",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "background": { 5 "background": {
6 "scripts": ["background.js"] 6 "scripts": ["background.js"]
7 }, 7 },
8 "commands": { 8 "commands": {
9 "Ctrl-Shift-1-non-global": { 9 "Ctrl-Shift-1-non-global": {
10 "suggested_key": { 10 "suggested_key": {
11 "default": "Ctrl+Shift+1" 11 "default": "Ctrl+Shift+1"
12 }, 12 },
13 "description": "Test fails if called (non-global)" 13 "description": "Test fails if called (non-global)"
14 }, 14 },
15 "Ctrl-Shift-A-Non-Assignable-Globally": { 15 "Ctrl-Shift-A-Non-Assignable-Globally": {
16 "suggested_key": { 16 "suggested_key": {
17 "default": "Ctrl+Shift+A" 17 "default": "Ctrl+Shift+A"
18 }, 18 },
19 "description": 19 "description":
20 "Test fails if called (Ctrl+Shift+A not auto-assignable globally)", 20 "Test fails if called (Ctrl+Shift+A not auto-assignable globally)",
21 "global": true 21 "global": true
22 }, 22 },
23 "Ctrl-Shift-9-Valid-Global-Shortcut": { 23 "Ctrl-Shift-8-Valid-Global-Shortcut": {
24 "suggested_key": { 24 "suggested_key": {
25 "default": "Ctrl+Shift+9" 25 "default": "Ctrl+Shift+8"
26 }, 26 },
27 "description": "Test passes if called (global shortcut)", 27 "description": "Test passes if called (global shortcut)",
28 "global": true 28 "global": true
29 } 29 }
30 } 30 }
31 } 31 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/keybinding/global/background.js ('k') | extensions/common/feature_switch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698