Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6839)

Unified Diff: chrome/common/extensions/api/app_window.idl

Issue 10871086: First part of remembering platform app window geometry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698