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

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: Roman changes Created 5 years, 8 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 80aa4b8837c939b1c6f6d863e565b137d5bddac4..60d5a1821ebf09bf931812d73d48fe88aaaf2034 100644
--- a/chrome/browser/resources/gaia_auth_host/authenticator.js
+++ b/chrome/browser/resources/gaia_auth_host/authenticator.js
@@ -493,7 +493,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;
@@ -539,7 +540,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