| Index: third_party/chrome/tools/test/forbidden.json
|
| diff --git a/third_party/chrome/tools/test/forbidden.json b/third_party/chrome/tools/test/forbidden.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c7978aaa9b54423fbd4d0246f74450110e31ff80
|
| --- /dev/null
|
| +++ b/third_party/chrome/tools/test/forbidden.json
|
| @@ -0,0 +1,39 @@
|
| +[
|
| + {
|
| + "namespace": "forbidden",
|
| + "types": [],
|
| + "functions": [
|
| + {
|
| + "name": "forbiddenParameters",
|
| + "type": "function",
|
| + "description": "Don't do this at home. Accepts multiple choices and values",
|
| + "parameters": [
|
| + {
|
| + "name": "firstChoice",
|
| + "description": "a choice between int and array",
|
| + "choices": [
|
| + {"type": "integer", "minimum": 0},
|
| + {"type": "array", "items": {"type": "integer"}}
|
| + ]
|
| + },
|
| + {
|
| + "type": "string",
|
| + "name": "firstString"
|
| + },
|
| + {
|
| + "name": "secondChoice",
|
| + "description": "a choice between int and array",
|
| + "choices": [
|
| + {"type": "integer", "minimum": 0},
|
| + {"type": "array", "items": {"type": "integer"}}
|
| + ]
|
| + },
|
| + {
|
| + "type": "string",
|
| + "name": "secondString"
|
| + }
|
| + ]
|
| + }
|
| + ]
|
| + }
|
| +]
|
|
|