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

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

Issue 354483004: Implement <appview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app_view_skeleton
Patch Set: Fixed formatting Created 6 years, 5 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
« no previous file with comments | « extensions/common/api/api.gyp ('k') | extensions/common/api/app_view_internal.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 // This object specifies details and operations to perform on the embedding
46 // request. The app to be embedded can make a decision on whether or not to
47 // allow the embedding and what to embed based on the embedder making the
48 // request.
49 dictionary EmbedRequest {
50 DOMString embedderId;
51
52 // Allows <code>embedderId</code> to embed this app in an &lt;appview&gt;
53 // element. The <code>url</code> specifies the content to embed.
54 [nocompile] static void allow(DOMString url);
55
56 // Prevents <code> embedderId</code> from embedding this app in an
57 // &lt;appview&gt; element.
58 [nocompile] static void deny();
59 };
60
45 interface Events { 61 interface Events {
62 // Fired when an embedding app requests to embed this app. This event is
63 // only available on dev channel with the flag --enable-app-view.
64 static void onEmbedRequested(EmbedRequest request);
65
46 // Fired when an app is launched from the launcher. 66 // Fired when an app is launched from the launcher.
47 static void onLaunched(optional LaunchData launchData); 67 static void onLaunched(optional LaunchData launchData);
48 68
49 // Fired at Chrome startup to apps that were running when Chrome last shut 69 // Fired at Chrome startup to apps that were running when Chrome last shut
50 // down. 70 // down.
51 static void onRestarted(); 71 static void onRestarted();
52 }; 72 };
53 }; 73 };
OLDNEW
« no previous file with comments | « extensions/common/api/api.gyp ('k') | extensions/common/api/app_view_internal.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698