| 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 fff505d64bb8e21fb747670f1f40848898825897..7dbab236cfb034afa8c4b9f681316d10b3aab19a 100644
|
| --- a/chrome/browser/signin/profile_oauth2_token_service.cc
|
| +++ b/chrome/browser/signin/profile_oauth2_token_service.cc
|
| @@ -168,15 +168,13 @@ 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(client_id,
|
| - refresh_token,
|
| + OAuth2TokenService::RegisterCacheEntry(refresh_token,
|
| scopes,
|
| access_token,
|
| expiration_date);
|
|
|