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

Unified Diff: chrome/browser/signin/profile_identity_provider.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/profile_identity_provider.h ('k') | chrome/browser/signin/signin_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/signin/profile_identity_provider.cc
diff --git a/chrome/browser/signin/profile_identity_provider.cc b/chrome/browser/signin/profile_identity_provider.cc
index 2a9299353b7b976c42d9211495f150aec0030eff..bb5dea15664b25037c8ae956d241e4e6b1532018 100644
--- a/chrome/browser/signin/profile_identity_provider.cc
+++ b/chrome/browser/signin/profile_identity_provider.cc
@@ -46,11 +46,13 @@ bool ProfileIdentityProvider::RequestLogin() {
}
void ProfileIdentityProvider::GoogleSigninSucceeded(
+ const std::string& account_id,
const std::string& username,
const std::string& password) {
FireOnActiveAccountLogin();
}
-void ProfileIdentityProvider::GoogleSignedOut(const std::string& username) {
+void ProfileIdentityProvider::GoogleSignedOut(const std::string& account_id,
+ const std::string& username) {
FireOnActiveAccountLogout();
}
« no previous file with comments | « chrome/browser/signin/profile_identity_provider.h ('k') | chrome/browser/signin/signin_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698