| Index: chrome/browser/signin/profile_oauth2_token_service.cc
|
| diff --git a/chrome/browser/signin/profile_oauth2_token_service.cc b/chrome/browser/signin/profile_oauth2_token_service.cc
|
| index 1687b33ef6c8e637b13d75deb8c981d0331e215b..8722688614beb69ced1fdfda67bede83bffafeba 100644
|
| --- a/chrome/browser/signin/profile_oauth2_token_service.cc
|
| +++ b/chrome/browser/signin/profile_oauth2_token_service.cc
|
| @@ -177,13 +177,15 @@ GoogleServiceAuthError ProfileOAuth2TokenService::GetAuthStatus() const {
|
| }
|
|
|
| void ProfileOAuth2TokenService::RegisterCacheEntry(
|
| + const std::string& client_id,
|
| const std::string& refresh_token,
|
| const ScopeSet& scopes,
|
| const std::string& access_token,
|
| const base::Time& expiration_date) {
|
| if (ShouldCacheForRefreshToken(TokenServiceFactory::GetForProfile(profile_),
|
| refresh_token)) {
|
| - OAuth2TokenService::RegisterCacheEntry(refresh_token,
|
| + OAuth2TokenService::RegisterCacheEntry(client_id,
|
| + refresh_token,
|
| scopes,
|
| access_token,
|
| expiration_date);
|
|
|