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

Unified Diff: chrome/browser/resources/gaia_auth/main.js

Issue 317093002: Show confirmation dialog for unsecure signin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/browser/resources/gaia_auth/main.js
diff --git a/chrome/browser/resources/gaia_auth/main.js b/chrome/browser/resources/gaia_auth/main.js
index 41f5116fff64978fe281fe376a4ffc93902131c3..fbdd3e702f6428f5b967e08206ce215394ccf8d1 100644
--- a/chrome/browser/resources/gaia_auth/main.js
+++ b/chrome/browser/resources/gaia_auth/main.js
@@ -207,7 +207,9 @@ Authenticator.prototype = {
'usingSAML': this.isSAMLFlow_,
'chooseWhatToSync': this.chooseWhatToSync_ || false,
'skipForNow': opt_extraMsg && opt_extraMsg.skipForNow,
- 'sessionIndex': opt_extraMsg && opt_extraMsg.sessionIndex
+ 'sessionIndex': opt_extraMsg && opt_extraMsg.sessionIndex,
+ 'confirmUntrustedSignin': opt_extraMsg &&
+ opt_extraMsg.confirmUntrustedSignin
};
window.parent.postMessage(msg, this.parentPage_);
if (this.isSAMLEnabled_)

Powered by Google App Engine
This is Rietveld 408576698