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

Side by Side Diff: tools/json_schema_compiler/test/permissions.json

Issue 9309044: Supporting more APIs with json_schema_compiler (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: support for choices Created 8 years, 10 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 { 2 {
3 "namespace": "permissions", 3 "namespace": "permissions",
4 "compile": true,
5 "types": [ 4 "types": [
6 { 5 {
7 "id": "Permissions", 6 "id": "Permissions",
8 "type": "object", 7 "type": "object",
9 "properties": { 8 "properties": {
10 "permissions": { 9 "permissions": {
11 "type": "array", 10 "type": "array",
12 "items": {"type": "string"}, 11 "items": {"type": "string"},
13 "optional": true, 12 "optional": true,
14 "description": "List of named permissions (does not include hosts or origins)." 13 "description": "List of named permissions (does not include hosts or origins)."
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 "type": "boolean", 130 "type": "boolean",
132 "description": "True if the permissions were removed." 131 "description": "True if the permissions were removed."
133 } 132 }
134 ] 133 ]
135 } 134 }
136 ] 135 ]
137 } 136 }
138 ] 137 ]
139 } 138 }
140 ] 139 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698