| 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();
|
| }
|
|
|