Chromium Code Reviews| 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; |