Chromium Code Reviews| 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>" ], |
|
Aaron Boodman
2012/02/27 23:32:31
Can you think of a more descriptive property name?
not at google - send to devlin
2012/02/28 05:00:04
I kinda like "matches" because it is sort of analo
Aaron Boodman
2012/02/29 01:03:58
OK, I can see your argument. "matches" is fine.
|
| + "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" |
| + } |
| + } |
| + ] |
| + } |
| +] |