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

Unified Diff: chrome/browser/profiles/gaia_info_update_service.cc

Issue 502343002: Add account_id to signin manager notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@isauth
Patch Set: Fix android trybots Created 6 years, 4 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/profiles/gaia_info_update_service.cc
diff --git a/chrome/browser/profiles/gaia_info_update_service.cc b/chrome/browser/profiles/gaia_info_update_service.cc
index 777589ea86fe144f378b665d965ba1fddafabfcc..d370a759c8a14305559845ada98428f45a2483a4 100644
--- a/chrome/browser/profiles/gaia_info_update_service.cc
+++ b/chrome/browser/profiles/gaia_info_update_service.cc
@@ -204,11 +204,13 @@ void GAIAInfoUpdateService::ScheduleNextUpdate() {
}
void GAIAInfoUpdateService::GoogleSigninSucceeded(
+ const std::string& account_id,
const std::string& username,
const std::string& password) {
OnUsernameChanged(username);
}
-void GAIAInfoUpdateService::GoogleSignedOut(const std::string& username) {
+void GAIAInfoUpdateService::GoogleSignedOut(const std::string& account_id,
+ const std::string& username) {
OnUsernameChanged(std::string());
}
« no previous file with comments | « chrome/browser/profiles/gaia_info_update_service.h ('k') | chrome/browser/services/gcm/fake_signin_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698