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

Side by Side Diff: third_party/chrome/tools/json_schema_compiler/test/functions_as_parameters.json

Issue 12300042: Update idlsync.py to pull in dependencies required for chrome api generation. (Closed) Base URL: git://github.com/dart-lang/bleeding_edge.git@master
Patch Set: From another checkout Created 7 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": "functions_as_parameters", 3 "namespace": "functions_as_parameters",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "FunctionType", 6 "id": "FunctionType",
7 "type": "object", 7 "type": "object",
8 "properties": { 8 "properties": {
9 "event_callback": { 9 "event_callback": {
10 "type": "function", 10 "type": "function",
11 "parameters": { } 11 "parameters": { }
12 } 12 }
13 } 13 }
14 }, 14 },
15 { 15 {
16 "id": "OptionalFunctionType", 16 "id": "OptionalFunctionType",
17 "type": "object", 17 "type": "object",
18 "properties": { 18 "properties": {
19 "event_callback": { 19 "event_callback": {
20 "type": "function", 20 "type": "function",
21 "optional": true, 21 "optional": true,
22 "parameters": { } 22 "parameters": { }
23 } 23 }
24 } 24 }
25 } 25 }
26 ] 26 ]
27 } 27 }
28 ] 28 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698