| Index: chrome/browser/sync_file_system/drive_backend/sync_engine.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/sync_engine.cc b/chrome/browser/sync_file_system/drive_backend/sync_engine.cc
|
| index 84a2ed54e1698241d9119d0ee9a7139ee35d587d..7614d612870d7e4b8ced8d838befddc3b507d643 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/sync_engine.cc
|
| +++ b/chrome/browser/sync_file_system/drive_backend/sync_engine.cc
|
| @@ -702,12 +702,14 @@ void SyncEngine::GoogleSigninFailed(const GoogleServiceAuthError& error) {
|
| "Failed to sign in.");
|
| }
|
|
|
| -void SyncEngine::GoogleSigninSucceeded(const std::string& username,
|
| +void SyncEngine::GoogleSigninSucceeded(const std::string& account_id,
|
| + const std::string& username,
|
| const std::string& password) {
|
| Initialize();
|
| }
|
|
|
| -void SyncEngine::GoogleSignedOut(const std::string& username) {
|
| +void SyncEngine::GoogleSignedOut(const std::string& account_id,
|
| + const std::string& username) {
|
| Reset();
|
| UpdateServiceState(REMOTE_SERVICE_AUTHENTICATION_REQUIRED,
|
| "User signed out.");
|
|
|