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

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

Issue 11186036: Implement size and position support for launchWebAuthFlow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/experimental_identity.idl
diff --git a/chrome/common/extensions/api/experimental_identity.idl b/chrome/common/extensions/api/experimental_identity.idl
index b7754735c327bcd1b0e39691be1b780dd89fd95d..625b0cd645cbaf60b738f585654bddb260579c52 100644
--- a/chrome/common/extensions/api/experimental_identity.idl
+++ b/chrome/common/extensions/api/experimental_identity.idl
@@ -16,6 +16,18 @@ namespace experimental.identity {
// Whether to launch auth flow in interactive mode. Default is false.
boolean? interactive;
+
+ // Width of the window, if one is shown in interactive mode.
+ long? width;
+
+ // Height of the window, if one is shown in interactive mode.
+ long? height;
+
+ // X coordinate of the window, if one is shown in interactive mode.
+ long? left;
+
+ // Y coordinate of the window, if one is shown in interactive mode.
+ long? top;
Munjal (Google) 2012/10/17 23:09:44 Nit: do we use individual fields or structs like s
Mihai Parparita -not on Chrome 2012/10/17 23:13:13 The windowing API uses individual fields (see chro
};
callback GetAuthTokenCallback = void (optional DOMString token);
« no previous file with comments | « chrome/browser/extensions/api/identity/web_auth_flow.cc ('k') | chrome/test/data/extensions/api_test/identity/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698