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

Unified Diff: components/signin/ios/browser/profile_oauth2_token_service_ios.mm

Issue 681483003: Fix a typo in an OAuth2TokenService classname (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 2 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: components/signin/ios/browser/profile_oauth2_token_service_ios.mm
diff --git a/components/signin/ios/browser/profile_oauth2_token_service_ios.mm b/components/signin/ios/browser/profile_oauth2_token_service_ios.mm
index f51af7396d8bd2f56e251d6dfbc86fb677f82109..d56678d735f861e830c0aa99c29d80049caee0ef 100644
--- a/components/signin/ios/browser/profile_oauth2_token_service_ios.mm
+++ b/components/signin/ios/browser/profile_oauth2_token_service_ios.mm
@@ -212,7 +212,7 @@ void ProfileOAuth2TokenServiceIOS::LoadCredentials(
void ProfileOAuth2TokenServiceIOS::ReloadCredentials() {
DCHECK(thread_checker_.CalledOnValidThread());
- ScopedBacthChange batch(this);
+ ScopedBatchChange batch(this);
// Remove all old accounts that do not appear in |new_accounts| and then
// load |new_accounts|.
@@ -242,7 +242,7 @@ void ProfileOAuth2TokenServiceIOS::UpdateCredentials(
void ProfileOAuth2TokenServiceIOS::RevokeAllCredentials() {
DCHECK(thread_checker_.CalledOnValidThread());
- ScopedBacthChange batch(this);
+ ScopedBatchChange batch(this);
CancelAllRequests();
ClearCache();
AccountInfoMap toRemove = accounts_;
« no previous file with comments | « components/signin/core/browser/mutable_profile_oauth2_token_service.cc ('k') | google_apis/gaia/oauth2_token_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698