| Index: third_party/chrome/tools/test/any.json
|
| diff --git a/third_party/chrome/tools/test/any.json b/third_party/chrome/tools/test/any.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..55da4a6119c0f844575063e6487eb15ef07a83d4
|
| --- /dev/null
|
| +++ b/third_party/chrome/tools/test/any.json
|
| @@ -0,0 +1,67 @@
|
| +[
|
| + {
|
| + "namespace": "any",
|
| + "types": [
|
| + {
|
| + "id": "AnyType",
|
| + "type": "object",
|
| + "properties": {
|
| + "any": {
|
| + "type": "any",
|
| + "description": "Any way you want it, that's the way you need it."
|
| + }
|
| + }
|
| + }
|
| + ],
|
| + "functions": [
|
| + {
|
| + "name": "optionalAny",
|
| + "type": "function",
|
| + "description": "Takes an optional any param.",
|
| + "parameters": [
|
| + {
|
| + "type": "any",
|
| + "name": "anyName",
|
| + "optional": true
|
| + },
|
| + {
|
| + "type": "function",
|
| + "name": "callback",
|
| + "parameters": []
|
| + }
|
| + ]
|
| + },
|
| + {
|
| + "name": "returnAny",
|
| + "type": "function",
|
| + "description": "Returns any.",
|
| + "nodoc": "true",
|
| + "parameters": [
|
| + {
|
| + "type": "function",
|
| + "name": "callback",
|
| + "parameters": [
|
| + {
|
| + "name": "result",
|
| + "type": "any"
|
| + }
|
| + ]
|
| + }
|
| + ]
|
| + }
|
| + ],
|
| + "events": [
|
| + {
|
| + "name": "onAnyFired",
|
| + "type": "function",
|
| + "description": "Fired when anything is ready.",
|
| + "parameters": [
|
| + {
|
| + "name": "something",
|
| + "type": "any"
|
| + }
|
| + ]
|
| + }
|
| + ]
|
| + }
|
| +]
|
|
|