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

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

Issue 48113024: Allow chrome.app.window alwaysOnTop property in stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 65f34f853cb615a80bfe16a6ea0cf52301429073..d697bce9d9599b06e5691c63610a2c13f2f78cdb 100644
--- a/chrome/common/extensions/api/app_window.idl
+++ b/chrome/common/extensions/api/app_window.idl
@@ -108,7 +108,6 @@ namespace app.window {
// multiple windows of this kind, the currently focused window will be in
// the foreground. Defaults to false. Call <code>setAlwaysOnTop()</code> on
// the window to change this property after creation.
- // Currently available in the Dev channel only.
boolean? alwaysOnTop;
};
@@ -180,12 +179,10 @@ namespace app.window {
[nodoc] static void setIcon(DOMString icon_url);
// Is the window always on top?
- // Currently available in the Dev channel only.
static boolean isAlwaysOnTop();
// Set whether the window should stay above most other windows.
- // Currently available in the Dev channel only.
- static void setAlwaysOnTop(boolean always_on_top);
+ static void setAlwaysOnTop(boolean alwaysOnTop);
benwells 2013/10/30 06:08:19 Ah, nice catch. Camel case is better. Can you also
// The JavaScript 'window' object for the created child.
[instanceOf=Window] object contentWindow;
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698