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

Unified Diff: chrome/browser/signin/android_profile_oauth2_token_service.cc

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
« no previous file with comments | « no previous file | chrome/browser/signin/fake_profile_oauth2_token_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/android_profile_oauth2_token_service.cc
diff --git a/chrome/browser/signin/android_profile_oauth2_token_service.cc b/chrome/browser/signin/android_profile_oauth2_token_service.cc
index 9f8fac9134527bb9654f4c0193ea59904953a5db..673ee58438132d3320dca9e327e1761105c151d1 100644
--- a/chrome/browser/signin/android_profile_oauth2_token_service.cc
+++ b/chrome/browser/signin/android_profile_oauth2_token_service.cc
@@ -278,7 +278,7 @@ void AndroidProfileOAuth2TokenService::ValidateAccounts(
curr_ids.clear();
}
- ScopedBacthChange batch(this);
+ ScopedBatchChange batch(this);
JNIEnv* env = AttachCurrentThread();
ScopedJavaLocalRef<jobjectArray> java_accounts(
@@ -431,7 +431,7 @@ void AndroidProfileOAuth2TokenService::FireRefreshTokensLoaded() {
void AndroidProfileOAuth2TokenService::RevokeAllCredentials() {
VLOG(1) << "AndroidProfileOAuth2TokenService::RevokeAllCredentials";
- ScopedBacthChange batch(this);
+ ScopedBatchChange batch(this);
std::vector<std::string> accounts = GetAccounts();
for (std::vector<std::string>::iterator it = accounts.begin();
it != accounts.end(); it++) {
« no previous file with comments | « no previous file | chrome/browser/signin/fake_profile_oauth2_token_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698