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

Unified Diff: chrome/common/extensions/api/app_window.idl

Issue 10986092: Transparent apps support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address reviewer's comment Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/app_window.idl
diff --git a/chrome/common/extensions/api/app_window.idl b/chrome/common/extensions/api/app_window.idl
index 2d3037b967d4b9990c32ec243693aff8974e09b5..70ec4ba6f0928bb41d2e3269c2da19920f1a8050 100644
--- a/chrome/common/extensions/api/app_window.idl
+++ b/chrome/common/extensions/api/app_window.idl
@@ -48,9 +48,14 @@ namespace app.window {
// Window type: 'shell' (the default) is the only currently supported value.
DOMString? type;
- // Frame type: 'none' or 'chrome' (defaults to 'chrome').
+ // Frame type: 'none', 'chrome' (default), 'experimental-html'.
+ // The value 'experimental-html' requires experimental API permission.
jeremya 2012/11/11 23:22:43 I'd rather we don't document the 'experimental-htm
Bernie 2012/12/18 21:08:36 Ok, reverted this chunk.
DOMString? frame;
+ // Enable window background transparency.
+ // Only supported in ash. Requires experimental API permission.
+ boolean? transparentBackground;
+
// If true, the window will be created in a hidden state. Call show() on
// the window to show it once it has been created. Defaults to false.
boolean? hidden;

Powered by Google App Engine
This is Rietveld 408576698