| Index: components/signin/core/browser/account_reconcilor.cc
|
| diff --git a/components/signin/core/browser/account_reconcilor.cc b/components/signin/core/browser/account_reconcilor.cc
|
| index d60482e54c012afcf5185e5f7bf21fcafba5794c..b84beaa181b3b2c7adce73eebf2b7b7b858f33d4 100644
|
| --- a/components/signin/core/browser/account_reconcilor.cc
|
| +++ b/components/signin/core/browser/account_reconcilor.cc
|
| @@ -342,14 +342,16 @@ void AccountReconcilor::OnEndBatchChanges() {
|
| StartReconcile();
|
| }
|
|
|
| -void AccountReconcilor::GoogleSigninSucceeded(const std::string& username,
|
| +void AccountReconcilor::GoogleSigninSucceeded(const std::string& account_id,
|
| + const std::string& username,
|
| const std::string& password) {
|
| VLOG(1) << "AccountReconcilor::GoogleSigninSucceeded: signed in";
|
| RegisterForCookieChanges();
|
| RegisterWithTokenService();
|
| }
|
|
|
| -void AccountReconcilor::GoogleSignedOut(const std::string& username) {
|
| +void AccountReconcilor::GoogleSignedOut(const std::string& account_id,
|
| + const std::string& username) {
|
| VLOG(1) << "AccountReconcilor::GoogleSignedOut: signed out";
|
| gaia_fetcher_.reset();
|
| get_gaia_accounts_callbacks_.clear();
|
|
|