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

Side by Side Diff: third_party/chrome/tools/test/crossref.json

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 [
2 {
3 "namespace": "crossref",
4 "dependencies": ["simple_api"],
5 "types": [
6 {
7 "id": "CrossrefType",
8 "type": "object",
9 "properties": {
10 "testType": {
11 "$ref": "simple_api.TestType",
12 "optional": true
13 }
14 }
15 }
16 ],
17 "functions": [
18 {
19 "name": "testTypeOptionalParam",
20 "type": "function",
21 "description": "Takes TestType as a param.",
22 "parameters": [
23 {
24 "name": "testType",
25 "$ref": "simple_api.TestType",
26 "optional": true
27 },
28 {
29 "name": "callback",
30 "type": "function",
31 "parameters": []
32 }
33 ]
34 },
35 {
36 "name": "getTestType",
37 "type": "function",
38 "description": "Return a TestType.",
39 "parameters": [
40 {
41 "name": "callback",
42 "type": "function",
43 "parameters": [
44 {
45 "name": "result",
46 "$ref": "simple_api.TestType",
47 "description": "A TestType."
48 }
49 ]
50 }
51 ]
52 },
53 {
54 "name": "testTypeInObject",
55 "type": "function",
56 "description": "Takes an optional object with a TestType and a bool.",
57 "parameters": [
58 {
59 "name": "paramObject",
60 "type": "object",
61 "properties": {
62 "testType": {"$ref": "simple_api.TestType", "optional": true},
63 "boolean": {"type": "boolean"}
64 }
65 },
66 {
67 "name": "callback",
68 "type": "function",
69 "parameters": []
70 }
71 ]
72 }
73 ]
74 }
75 ]
OLDNEW
« no previous file with comments | « third_party/chrome/tools/test/content_settings.json ('k') | third_party/chrome/tools/test/dependency_tester.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698