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

Side by Side Diff: chrome/common/extensions/api/app_runtime.idl

Issue 23847004: "Redirecting URLs to Packaged Apps" implementation: revised (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a few TODOs Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Use the <code>chrome.app.runtime</code> API to manage the app lifecycle. 5 // Use the <code>chrome.app.runtime</code> API to manage the app lifecycle.
6 // The app runtime manages app installation, controls the event page, and can 6 // The app runtime manages app installation, controls the event page, and can
7 // shut down the app at anytime. 7 // shut down the app at anytime.
8 namespace app.runtime { 8 namespace app.runtime {
9 9
10 [inline_doc] dictionary LaunchItem { 10 [inline_doc] dictionary LaunchItem {
11 // FileEntry for the file. 11 // FileEntry for the file.
12 [instanceOf=FileEntry] object entry; 12 [instanceOf=FileEntry] object entry;
13 13
14 // The MIME type of the file. 14 // The MIME type of the file.
15 DOMString type; 15 DOMString type;
16 }; 16 };
17 17
18 // Optional data for the launch. 18 // Optional data for the launch. Either <code>items</code>, or
19 // the pair (<code>url, referrerUrl</code>) can be present for any given
20 // launch.
19 [inline_doc] dictionary LaunchData { 21 [inline_doc] dictionary LaunchData {
20 // The id of the file handler that the app is being invoked with. 22 // The ID of the file or URL handler that the app is being invoked with.
23 // Handler IDs are the top-level keys in the <code>file_handlers</code>
24 // and/or <code>url_handlers</code> dictionaries in the manifest.
21 DOMString? id; 25 DOMString? id;
22 26
27 // The file entries for the <code>onLaunched</code> event triggered by a
28 // matching file handler in the <code>file_handlers</code> manifest key.
23 LaunchItem[]? items; 29 LaunchItem[]? items;
30
31 // The URL for the <code>onLaunched</code> event triggered by a matching
32 // URL handler in the <code>url_handlers</code> manifest key.
33 DOMString? url;
34
35 // The referrer URL for the <code>onLaunched</code> event triggered by a
36 // matching URL handler in the <code>url_handlers</code> manifest key.
37 DOMString? referrerUrl;
24 }; 38 };
25 39
26 interface Events { 40 interface Events {
27 // Fired when an app is launched from the launcher. 41 // Fired when an app is launched from the launcher.
28 static void onLaunched(optional LaunchData launchData); 42 static void onLaunched(optional LaunchData launchData);
29 43
30 // Fired at Chrome startup to apps that were running when Chrome last shut 44 // Fired at Chrome startup to apps that were running when Chrome last shut
31 // down. 45 // down.
32 static void onRestarted(); 46 static void onRestarted();
33 }; 47 };
34 }; 48 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/_manifest_features.json ('k') | chrome/common/extensions/api/url_handlers/url_handlers_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698