Chromium Code Reviews| Index: chrome/browser/signin/token_service.cc |
| diff --git a/chrome/browser/signin/token_service.cc b/chrome/browser/signin/token_service.cc |
| index 77345280f4942e8726866cc90be24d43d4a544c6..6823cf1be9b40e039987dba0938d1396bd7a175c 100644 |
| --- a/chrome/browser/signin/token_service.cc |
| +++ b/chrome/browser/signin/token_service.cc |
| @@ -123,6 +123,10 @@ void TokenService::UpdateCredentials( |
| for (size_t i = 0; i < arraysize(kServices); i++) { |
| fetchers_[i].reset(); |
| } |
| + |
| + // Notify the CredentialCacheService that a new lsid and sid are available. |
|
Raghu Simha
2012/07/21 01:15:46
FYI: This code is causing failures in the TokenSer
Raghu Simha
2012/07/21 02:00:55
Fixed in Patch set 5.
|
| + FireTokenAvailableNotification(GaiaConstants::kGaiaLsid, credentials.lsid); |
| + FireTokenAvailableNotification(GaiaConstants::kGaiaSid, credentials.sid); |
| } |
| void TokenService::UpdateCredentialsWithOAuth2( |