| Index: google_apis/gaia/oauth2_token_service.cc
|
| diff --git a/google_apis/gaia/oauth2_token_service.cc b/google_apis/gaia/oauth2_token_service.cc
|
| index 9684281097b839c75b47f636d755b70db36d0d79..1a355462f0018ee164c61f5ecbbb8f0563703761 100644
|
| --- a/google_apis/gaia/oauth2_token_service.cc
|
| +++ b/google_apis/gaia/oauth2_token_service.cc
|
| @@ -715,6 +715,12 @@ void OAuth2TokenService::FireRefreshTokenAvailable(
|
| OnRefreshTokenAvailable(account_id));
|
| }
|
|
|
| +void OAuth2TokenService::FireRefreshTokenAvailable(
|
| + const std::deque<std::string>& account_ids) {
|
| + FOR_EACH_OBSERVER(Observer, observer_list_,
|
| + OnRefreshTokenAvailable(account_ids));
|
| +}
|
| +
|
| void OAuth2TokenService::FireRefreshTokenRevoked(
|
| const std::string& account_id) {
|
| FOR_EACH_OBSERVER(Observer, observer_list_,
|
|
|