Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: google_apis/gaia/oauth2_token_service.cc

Issue 63253003: Fix issues with token refresh in AccountReconcilor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wip Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_,
« chrome/browser/signin/account_reconcilor.cc ('K') | « google_apis/gaia/oauth2_token_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698