OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 { |
(...skipping 24 matching lines...) Expand all Loading... |
35 // The referrer URL for the <code>onLaunched</code> event triggered by a | 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. | 36 // matching URL handler in the <code>url_handlers</code> manifest key. |
37 DOMString? referrerUrl; | 37 DOMString? referrerUrl; |
38 | 38 |
39 // Whether the app is being launched in a <a | 39 // Whether the app is being launched in a <a |
40 // href="https://support.google.com/chromebook/answer/3134673">Chrome OS | 40 // href="https://support.google.com/chromebook/answer/3134673">Chrome OS |
41 // kiosk session</a>. | 41 // kiosk session</a>. |
42 boolean? isKioskSession; | 42 boolean? isKioskSession; |
43 }; | 43 }; |
44 | 44 |
| 45 [inline_doc] dictionary AppEmbeddingRequest { |
| 46 long? id; |
| 47 |
| 48 DOMString embedderExtensionId; |
| 49 |
| 50 [nocompile] static void allow(DOMString url, object api, DOMString schema); |
| 51 |
| 52 [nocompile] static void deny(); |
| 53 }; |
| 54 |
45 interface Events { | 55 interface Events { |
| 56 // Fired when an embedding app requests to embed this app. |
| 57 static void onAppEmbeddingRequest(AppEmbeddingRequest request); |
| 58 |
46 // Fired when an app is launched from the launcher. | 59 // Fired when an app is launched from the launcher. |
47 static void onLaunched(optional LaunchData launchData); | 60 static void onLaunched(optional LaunchData launchData); |
48 | 61 |
49 // Fired at Chrome startup to apps that were running when Chrome last shut | 62 // Fired at Chrome startup to apps that were running when Chrome last shut |
50 // down. | 63 // down. |
51 static void onRestarted(); | 64 static void onRestarted(); |
52 }; | 65 }; |
53 }; | 66 }; |
OLD | NEW |