| Index: chrome/common/extensions/api/experimental_app.json
|
| diff --git a/chrome/common/extensions/api/experimental_app.json b/chrome/common/extensions/api/experimental_app.json
|
| index a169fe5e699fba0189b0329fe44cf3445a7d2a6f..0eeb43a97988f0a72bddc66cb26e7a1523ace8c5 100644
|
| --- a/chrome/common/extensions/api/experimental_app.json
|
| +++ b/chrome/common/extensions/api/experimental_app.json
|
| @@ -83,7 +83,47 @@
|
| "nodoc": true,
|
| "name": "onLaunched",
|
| "type": "function",
|
| - "description": "Fired when the app is launched."
|
| + "description": "Fired when the app is launched.",
|
| + "parameters": [
|
| + {
|
| + "type": "object",
|
| + "name": "launchData",
|
| + "description": "Optional data for the launch.",
|
| + "optional": true,
|
| + "properties": {
|
| + "intent": {
|
| + "type": "object",
|
| + "description": "File being opened in the form of a WebIntents intent object.",
|
| + "properties": {
|
| + "action": {
|
| + "type": "string",
|
| + "description": "The WebIntent being invoked."
|
| + },
|
| + "type": {
|
| + "type": "string",
|
| + "description": "The MIME type of the file being opened."
|
| + },
|
| + "data": {
|
| + "type": "object",
|
| + "isInstanceOf": "FileEntry",
|
| + "description": "A FileEntry for the file being opened.",
|
| + "additionalProperties": {
|
| + "type": "any"
|
| + }
|
| + },
|
| + "postResult": {
|
| + "type": "function",
|
| + "description": "Null callback to be compatible with WebIntents."
|
| + },
|
| + "postFailure": {
|
| + "type": "function",
|
| + "description": "Null callback to be compatible with WebIntents."
|
| + }
|
| + }
|
| + }
|
| + }
|
| + }
|
| + ]
|
| }
|
| ]
|
| }
|
|
|