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 7c61e06b6f3cc4e287d4d8536d2bdb045abc9958..3bafb3d308943f36612fec6ddcc941c975d5c95d 100644 |
| --- a/chrome/common/extensions/api/app_window.idl |
| +++ b/chrome/common/extensions/api/app_window.idl |
| @@ -6,6 +6,21 @@ |
| namespace app.window { |
| dictionary CreateWindowOptions { |
| + // id to identify the window. |
| + DOMString? id; |
| + |
| + // Default width of the window. |
| + long? defaultWidth; |
| + |
| + // Default height of the window. |
| + long? defaultHeight; |
| + |
| + // Default X coordinate of the window. |
| + long? defaultLeft; |
| + |
| + // Default Y coordinate of the window. |
| + long? defaultTop; |
| + |
|
asargent_no_longer_on_chrome
2012/08/28 18:49:41
We should add a comment somewhere explaining to de
Marijn Kruisselbrink
2012/08/28 22:14:58
Okay, attempted to write some sort of explanation,
|
| // Width of the window. |
| long? width; |