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

Unified Diff: chrome/browser/resources/gaia_auth_host/authenticator.js

Issue 1115993002: ChromeOS Gaia: SAML password confirmation dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 7 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_host/authenticator.js
diff --git a/chrome/browser/resources/gaia_auth_host/authenticator.js b/chrome/browser/resources/gaia_auth_host/authenticator.js
index 31c1eb2424d04ce4cbf723a92487eeee2529fe86..020493cdf46cd1ccf7be7b5a82c5a6735841a8bc 100644
--- a/chrome/browser/resources/gaia_auth_host/authenticator.js
+++ b/chrome/browser/resources/gaia_auth_host/authenticator.js
@@ -506,7 +506,8 @@ cr.define('cr.login', function() {
// TODO(xiyuan): Change to synchronous call when iframe based code
// is removed.
var invokeConfirmPassword = (function() {
- this.confirmPasswordCallback(this.samlHandler_.scrapedPasswordCount);
+ this.confirmPasswordCallback(this.email_,
+ this.samlHandler_.scrapedPasswordCount);
}).bind(this);
window.setTimeout(invokeConfirmPassword, 0);
return;
@@ -552,7 +553,8 @@ cr.define('cr.login', function() {
if (this.confirmPasswordCallback) {
// Confirm scraped password. The flow follows in
// verifyConfirmedPassword.
- this.confirmPasswordCallback(this.samlHandler_.scrapedPasswordCount);
+ this.confirmPasswordCallback(this.email_,
+ this.samlHandler_.scrapedPasswordCount);
return;
}
}

Powered by Google App Engine
This is Rietveld 408576698