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 b08037bf327bddf1dfbb1ba6e508493e54cff19d..d1a031b3ac55e13d5c13c506a3946cdb75252c9a 100644 |
| --- a/chrome/common/extensions/api/app_window.idl |
| +++ b/chrome/common/extensions/api/app_window.idl |
| @@ -351,6 +351,9 @@ namespace app.window { |
| // <code>"alwaysOnTopWindows"</code> permission. |
| static void setAlwaysOnTop(boolean alwaysOnTop); |
| + // Can the window use alpha transparency? |
| + [nodoc] static boolean alphaEnabled(); |
|
tapted
2014/07/14 03:30:24
For things not yet in stable channel, convention s
jackhou1
2014/07/14 04:51:03
Done.
|
| + |
| // The JavaScript 'window' object for the created child. |
| [instanceOf=Window] object contentWindow; |
| @@ -433,6 +436,9 @@ namespace app.window { |
| // Fired when the window is restored from being minimized or maximized. |
| [nocompile] static void onRestored(); |
| + // Fired when the window's ability to use alpha transparency changes. |
| + [nocompile, nodoc] static void onAlphaEnabledChanged(); |
| + |
| // Event for testing. Lets tests wait until a window has been shown. |
| [nocompile, nodoc] static void onWindowFirstShown(); |
| }; |