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 |
| index 9a143f5e94455630a9f4fb2d678159284fef20a0..8aa800bf52fa28930696d457f78d6550968dc3e8 100644 |
| --- a/chrome/common/extensions/api/app.json |
| +++ b/chrome/common/extensions/api/app.json |
| @@ -36,6 +36,33 @@ |
| } |
| }, |
| { |
| + "name": "installState", |
| + "description": "todo", |
|
miket_OOO
2012/04/23 22:11:16
todo->TODO to be consistent.
jstritar
2012/04/23 23:46:12
Done.
|
| + "type": "function", |
| + "parameters": [ |
| + { |
| + "type": "function", |
| + "name": "callback", |
| + "parameters": [ |
| + { |
| + "type": "string", |
| + "enum": [ "not_installed", "installed", "disabled" ] |
| + } |
| + ] |
| + } |
| + ] |
| + }, |
| + { |
| + "name": "runningState", |
| + "description": "todo", |
| + "type": "function", |
| + "parameters": [], |
| + "returns": { |
| + "type": "string", |
| + "enum": [ "running", "cannot_run", "ready_to_run" ] |
| + } |
| + }, |
| + { |
| "name": "install", |
| "description": "TODO", |
| "type": "function", |