| 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_;
|
|
|