| Index: chrome/common/extensions/api/app.json
|
| diff --git a/chrome/common/extensions/api/app.json b/chrome/common/extensions/api/app.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0e813e6e99e2b85fa98f3da6d014384f1b1cb58a
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/api/app.json
|
| @@ -0,0 +1,70 @@
|
| +[
|
| + {
|
| + "namespace": "app",
|
| + "nodoc": true,
|
| + "unprivileged": true,
|
| + "matches": [ "<all_urls>" ],
|
| + "types": [
|
| + {
|
| + "id": "Details",
|
| + "description": "TODO (it's a manifest)",
|
| + "type": "object",
|
| + "properties": {},
|
| + "additionalProperties": { "type": "any" }
|
| + },
|
| + {
|
| + "id": "DOMWindow",
|
| + "type": "object",
|
| + "properties": {},
|
| + "additionalProperties": { "type": "any" }
|
| + }
|
| + ],
|
| + "functions": [
|
| + {
|
| + "name": "getIsInstalled",
|
| + "description": "TODO",
|
| + "type": "function",
|
| + "parameters": [],
|
| + "returns": {
|
| + "name": "isInstalled",
|
| + "description": "TODO",
|
| + "type": "boolean"
|
| + }
|
| + },
|
| + {
|
| + "name": "install",
|
| + "description": "TODO",
|
| + "type": "function",
|
| + "parameters": []
|
| + },
|
| + {
|
| + "name": "getDetails",
|
| + "description": "TODO",
|
| + "type": "function",
|
| + "parameters": [],
|
| + "returns": {
|
| + "$ref": "Details",
|
| + "optional": true,
|
| + "description": "TODO"
|
| + }
|
| + },
|
| + {
|
| + "name": "getDetailsForFrame",
|
| + "description": "TODO",
|
| + "type": "function",
|
| + "parameters": [
|
| + {
|
| + "name": "frame",
|
| + "description": "TODO",
|
| + "$ref": "DOMWindow"
|
| + }
|
| + ],
|
| + "returns": {
|
| + "$ref": "Details",
|
| + "optional": true,
|
| + "description": "TODO"
|
| + }
|
| + }
|
| + ]
|
| + }
|
| +]
|
|
|