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

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

Issue 10907151: Extensions Docs Server: Enum values do not show up if enum is a type (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 { 2 {
3 "namespace": "enums", 3 "namespace": "enums",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "Enumeration", 6 "id": "Enumeration",
7 "enum": ["none", "one", "two", "three"] 7 "enum": ["one", "two", "three"]
8 }, 8 },
9 { 9 {
10 "id": "EnumType", 10 "id": "EnumType",
11 "type": "object", 11 "type": "object",
12 "properties": { 12 "properties": {
13 "type": { 13 "type": {
14 "type": "string", 14 "type": "string",
15 "enum": ["one", "two", "three"] 15 "enum": ["one", "two", "three"]
16 } 16 }
17 } 17 }
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 { 202 {
203 "name": "secondEnum", 203 "name": "secondEnum",
204 "type": "string", 204 "type": "string",
205 "enum": ["spam", "ham", "eggs"] 205 "enum": ["spam", "ham", "eggs"]
206 } 206 }
207 ] 207 ]
208 } 208 }
209 ] 209 ]
210 } 210 }
211 ] 211 ]
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/test/dependency_tester.json ('k') | tools/json_schema_compiler/test/enums_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698