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 1303385249f6b14316cfa871787b772c460033ee..aea97322d3274e4b9647429027970457f79e58b9 100644 |
| --- a/chrome/common/extensions/api/app_window.idl |
| +++ b/chrome/common/extensions/api/app_window.idl |
| @@ -348,6 +348,12 @@ namespace app.window { |
| // <code>"alwaysOnTopWindows"</code> permission. |
| static void setAlwaysOnTop(boolean alwaysOnTop); |
| + // Set whether the window should get all keyboard events including system |
| + // keys that are usually not sent. This currently works only when the |
| + // windows is in fullscreen. Requires the <code>"requestAllKeys"</code> |
|
benwells
2014/05/27 22:29:48
The window permissions have changed to be app.wind
Sriram
2014/05/27 22:48:06
yes, the permission added was "app.window.requestA
|
| + // permission. |
| + static void setWantAllKeys(boolean wantAllKeys); |
| + |
| // The JavaScript 'window' object for the created child. |
| [instanceOf=Window] object contentWindow; |