| Index: chrome/common/extensions/api/app_current_window_internal.idl
|
| diff --git a/chrome/common/extensions/api/app_current_window_internal.idl b/chrome/common/extensions/api/app_current_window_internal.idl
|
| index 2bf231b456156cb4abe00a4d560c2c467b878ceb..e1a4b3de600da52ecf718c34c105ab3a609c02fe 100644
|
| --- a/chrome/common/extensions/api/app_current_window_internal.idl
|
| +++ b/chrome/common/extensions/api/app_current_window_internal.idl
|
| @@ -5,6 +5,18 @@
|
| // This is used by the app window API internally to pass through messages to
|
| // the shell window.
|
| [internal, nodoc] namespace app.currentWindowInternal {
|
| +
|
| + // TODO(asargent) - We need to add support for referencing types in
|
| + // other namespaces (crbug.com/158654). For now just duplicate this
|
| + // dictionary from app.window.
|
| + dictionary Bounds {
|
| + long? left;
|
| + long? top;
|
| + long? width;
|
| + long? height;
|
| + };
|
| +
|
| +
|
| interface Functions {
|
| static void focus();
|
| static void minimize();
|
| @@ -14,5 +26,6 @@
|
| static void clearAttention();
|
| static void show();
|
| static void hide();
|
| + static void setBounds(Bounds bounds);
|
| };
|
| };
|
|
|