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

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

Issue 809313009: Make the SigninErrorController a PKS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary header Created 5 years, 11 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/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 7ea5a6884bdbd22b5c1b060d73fa35d9cc7a850a..135857bb8dadd58bcd58022f3c300eeb856826dd 100644
--- a/chrome/browser/signin/android_profile_oauth2_token_service.cc
+++ b/chrome/browser/signin/android_profile_oauth2_token_service.cc
@@ -159,9 +159,11 @@ static jobject GetForProfile(JNIEnv* env,
env, clazz, j_profile_android);
}
-void AndroidProfileOAuth2TokenService::Initialize(SigninClient* client) {
+void AndroidProfileOAuth2TokenService::Initialize(
+ SigninClient* client,
+ SigninErrorController* signin_error_controller) {
DVLOG(1) << "AndroidProfileOAuth2TokenService::Initialize";
- ProfileOAuth2TokenService::Initialize(client);
+ ProfileOAuth2TokenService::Initialize(client, signin_error_controller);
if (!is_testing_profile_) {
Java_OAuth2TokenService_validateAccounts(

Powered by Google App Engine
This is Rietveld 408576698