Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: chrome/common/extensions/api/extension_api.json

Issue 3462011: Manual merge of 60334 - Add a launchApp method to extension management API.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/517/src/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/extension_api.json
===================================================================
--- chrome/common/extensions/api/extension_api.json (revision 60491)
+++ chrome/common/extensions/api/extension_api.json (working copy)
@@ -3928,6 +3928,10 @@
"description": "The name of this extension or app.",
"type": "string"
},
+ "version": {
+ "description": "The <a href='manifest.html#version'>version</a> of this extension or app.",
+ "type": "string"
+ },
"enabled": {
"description": "Whether it is currently enabled or disabled.",
"type": "boolean"
@@ -4020,6 +4024,23 @@
"parameters": []
}
]
+ },
+ {
+ "name": "launchApp",
+ "description": "Launches an application.",
+ "parameters": [
+ {
+ "name": "id",
+ "type": "string",
+ "description": "The extension id of the application."
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "optional": "true",
+ "parameters": []
+ }
+ ]
}
],
"events": [

Powered by Google App Engine
This is Rietveld 408576698