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

Unified Diff: chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc

Issue 1143323005: Refactor AO2TS to make it easier to componentize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address roger's comments Created 5 years, 7 months 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: chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
diff --git a/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc b/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
index c1b9921f912bc6f0a25d428d7cf426f39d9738b5..ce5437b268a334dffde8bdfd5d19deb106b0aa84 100644
--- a/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
+++ b/chrome/browser/supervised_user/child_accounts/family_info_fetcher.cc
@@ -202,7 +202,7 @@ void FamilyInfoFetcher::OnURLFetchComplete(
access_token_expired_ = true;
OAuth2TokenService::ScopeSet scopes;
scopes.insert(kScope);
- token_service_->InvalidateToken(account_id_, scopes, access_token_);
+ token_service_->InvalidateAccessToken(account_id_, scopes, access_token_);
StartFetching();
return;
}

Powered by Google App Engine
This is Rietveld 408576698