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

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

Issue 11221002: Merge 162639 - Implement size and position support for launchWebAuthFlow. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1271/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
===================================================================
--- chrome/common/extensions/api/experimental_identity.idl (revision 162714)
+++ chrome/common/extensions/api/experimental_identity.idl (working copy)
@@ -16,6 +16,18 @@
// 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;
};
callback GetAuthTokenCallback = void (optional DOMString token);

Powered by Google App Engine
This is Rietveld 408576698