| Index: chrome/browser/resources/gaia_auth/background.js
|
| diff --git a/chrome/browser/resources/gaia_auth/background.js b/chrome/browser/resources/gaia_auth/background.js
|
| index 50c72243f18be0bf8e38a7de499dfa1305d280fb..6286aab86fa3c566c7130a798bc42a28be729689 100644
|
| --- a/chrome/browser/resources/gaia_auth/background.js
|
| +++ b/chrome/browser/resources/gaia_auth/background.js
|
| @@ -120,6 +120,10 @@ BackgroundBridge.prototype = {
|
| // 'google-accounts-signin'.
|
| email_: null,
|
|
|
| + // Gaia Id of the newly authenticated user based on the gaia response
|
| + // header 'google-accounts-signin'.
|
| + gaiaId_: null,
|
| +
|
| // Session index of the newly authenticated user based on the gaia response
|
| // header 'google-accounts-signin'.
|
| sessionIndex_: null,
|
| @@ -221,6 +225,7 @@ BackgroundBridge.prototype = {
|
| msg = {
|
| 'name': 'completeLogin',
|
| 'email': this.email_,
|
| + 'gaiaId': this.gaiaId_,
|
| 'password': passwords[0],
|
| 'sessionIndex': this.sessionIndex_,
|
| 'skipForNow': skipForNow
|
| @@ -280,6 +285,7 @@ BackgroundBridge.prototype = {
|
| });
|
| // Remove "" around.
|
| this.email_ = signinDetails['email'].slice(1, -1);
|
| + this.gaiaId_ = signinDetails['obfuscatedid'].slice(1, -1);
|
| this.sessionIndex_ = signinDetails['sessionindex'];
|
| break;
|
| }
|
|
|