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..52e93271e74176490638058ceec5817d3d582fb7 100644 |
--- a/chrome/common/extensions/api/app.json |
+++ b/chrome/common/extensions/api/app.json |
@@ -36,6 +36,33 @@ |
} |
}, |
{ |
+ "name": "installState", |
+ "description": "TODO", |
+ "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", |