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

Unified Diff: chrome/browser/signin/signin_names_io_thread.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
« no previous file with comments | « chrome/browser/signin/signin_names_io_thread.h ('k') | chrome/browser/sync/profile_sync_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/signin_names_io_thread.cc
diff --git a/chrome/browser/signin/signin_names_io_thread.cc b/chrome/browser/signin/signin_names_io_thread.cc
index c767f0053b88f33a4e7a9df75d5f6bf1319eb55b..ae977dd6c345ee6293bbbc597f74cb177cce3a73 100644
--- a/chrome/browser/signin/signin_names_io_thread.cc
+++ b/chrome/browser/signin/signin_names_io_thread.cc
@@ -71,12 +71,14 @@ void SigninNamesOnIOThread::SigninManagerShutdown(SigninManagerBase* manager) {
observed_managers_.erase(manager);
}
-void SigninNamesOnIOThread::GoogleSigninSucceeded(const std::string& username,
+void SigninNamesOnIOThread::GoogleSigninSucceeded(const std::string& account_id,
+ const std::string& username,
const std::string& password) {
PostTaskToIOThread(true, base::UTF8ToUTF16(username));
}
-void SigninNamesOnIOThread::GoogleSignedOut(const std::string& username) {
+void SigninNamesOnIOThread::GoogleSignedOut(const std::string& account_id,
+ const std::string& username) {
PostTaskToIOThread(false, base::UTF8ToUTF16(username));
}
« no previous file with comments | « chrome/browser/signin/signin_names_io_thread.h ('k') | chrome/browser/sync/profile_sync_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698