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

Side by Side Diff: third_party/chrome/tools/test/forbidden.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": "forbidden",
4 "types": [],
5 "functions": [
6 {
7 "name": "forbiddenParameters",
8 "type": "function",
9 "description": "Don't do this at home. Accepts multiple choices and valu es",
10 "parameters": [
11 {
12 "name": "firstChoice",
13 "description": "a choice between int and array",
14 "choices": [
15 {"type": "integer", "minimum": 0},
16 {"type": "array", "items": {"type": "integer"}}
17 ]
18 },
19 {
20 "type": "string",
21 "name": "firstString"
22 },
23 {
24 "name": "secondChoice",
25 "description": "a choice between int and array",
26 "choices": [
27 {"type": "integer", "minimum": 0},
28 {"type": "array", "items": {"type": "integer"}}
29 ]
30 },
31 {
32 "type": "string",
33 "name": "secondString"
34 }
35 ]
36 }
37 ]
38 }
39 ]
OLDNEW
« no previous file with comments | « third_party/chrome/tools/test/font_settings.json ('k') | third_party/chrome/tools/test/functions_as_parameters.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698