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

Side by Side Diff: chrome/test/data/extensions/manifest_tests/command_too_many.json

Issue 12965009: Remove the limit of number of commands per extension, but keep the limit of 4 shortcuts per extensi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 9 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": "Command test - too many commands", 2 "name": "Command test - too many commands with shortcuts",
3 "manifest_version": 2, 3 "manifest_version": 2,
4 "version": "2", 4 "version": "2",
5 "commands": { 5 "commands": {
6 "feature1": { 6 "feature1": {
7 "suggested_key": "Ctrl+A", 7 "suggested_key": "Ctrl+A",
8 "description": "feature1" 8 "description": "feature1"
9 }, 9 },
10 "feature2": { 10 "feature2": {
11 "suggested_key": "Ctrl+B", 11 "suggested_key": "Ctrl+B",
12 "description": "feature2" 12 "description": "feature2"
13 }, 13 },
14 "feature3": { 14 "feature3": {
15 "suggested_key": "Ctrl+C", 15 "suggested_key": "Ctrl+C",
16 "description": "feature3" 16 "description": "feature3"
17 }, 17 },
18 "feature4": { 18 "feature4": {
19 "suggested_key": "Ctrl+D", 19 "suggested_key": "Ctrl+D",
20 "description": "feature4" 20 "description": "feature4"
21 }, 21 },
22 "feature5": { 22 "feature5": {
23 "suggested_key": "Ctrl+E", 23 "suggested_key": "Ctrl+E",
24 "description": "feature5" 24 "description": "feature5"
25 } 25 }
26 } 26 }
27 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698