| 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;
|
| }
|
| }
|
|
|