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