| 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 ca088048cdb3acc1f81a6d00ffd8a82b11b65b59..b0aa1b706b24cddf62f4597f8fedb9d55bbf6684 100644
|
| --- a/chrome/common/extensions/api/app_window.idl
|
| +++ b/chrome/common/extensions/api/app_window.idl
|
| @@ -3,6 +3,13 @@
|
| // found in the LICENSE file.
|
|
|
| namespace app.window {
|
| + dictionary Bounds {
|
| + long? left;
|
| + long? top;
|
| + long? width;
|
| + long? height;
|
| + };
|
| +
|
| dictionary CreateWindowOptions {
|
| // Id to identify the window. This will be used to remember the size
|
| // and position of the window and restore that geometry when a window
|
| @@ -82,13 +89,6 @@ namespace app.window {
|
| callback CreateWindowCallback =
|
| void ([instanceOf=AppWindow] object created_window);
|
|
|
| - dictionary Bounds {
|
| - long? left;
|
| - long? top;
|
| - long? width;
|
| - long? height;
|
| - };
|
| -
|
| dictionary AppWindow {
|
| // Focus the window.
|
| static void focus();
|
|
|