| Index: chrome/common/extensions/api/app_runtime.idl
|
| diff --git a/chrome/common/extensions/api/app_runtime.idl b/chrome/common/extensions/api/app_runtime.idl
|
| index da8ddb885a9fdff4924676a59a7743a08a837db5..c6355484d96ce919ed1a1f3089ef45cd0c790c41 100644
|
| --- a/chrome/common/extensions/api/app_runtime.idl
|
| +++ b/chrome/common/extensions/api/app_runtime.idl
|
| @@ -17,10 +17,22 @@ namespace app.runtime {
|
|
|
| // Optional data for the launch.
|
| [inline_doc] dictionary LaunchData {
|
| - // The id of the file handler that the app is being invoked with.
|
| + // The ID of the file or URL handler that the app is being invoked with.
|
| + // Handler IDs are the top-level keys in the <code>file_handlers</code>
|
| + // and/or <code>url_handlers</code> dictionaries in the manifest.
|
| DOMString? id;
|
|
|
| + // The file entries for <code>onLaunched</code> triggered by a matching
|
| + // file handler from the <code>file_handlers</code> manifest key.
|
| LaunchItem[]? items;
|
| +
|
| + // The URL for <code>onLaunched</code> triggered by a matching URL handler
|
| + // from the <code>url_handlers</code> manifest key.
|
| + DOMString? url;
|
| +
|
| + // The referrer URL for <code>onLaunched</code> triggered by a matching
|
| + // URL handler from the <code>url_handlers</code> manifest key.
|
| + DOMString? referrerUrl;
|
| };
|
|
|
| interface Events {
|
|
|