| Index: chrome/browser/sync/profile_sync_service.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc
|
| index 6bbf3813f7fca1ef00eba9863cc8cc8414e6d91f..157de91a2875093fbed2f882c4edf28e682cceaf 100644
|
| --- a/chrome/browser/sync/profile_sync_service.cc
|
| +++ b/chrome/browser/sync/profile_sync_service.cc
|
| @@ -2293,7 +2293,8 @@ void ProfileSyncService::OnSyncManagedPrefChange(bool is_sync_managed) {
|
| }
|
| }
|
|
|
| -void ProfileSyncService::GoogleSigninSucceeded(const std::string& username,
|
| +void ProfileSyncService::GoogleSigninSucceeded(const std::string& account_id,
|
| + const std::string& username,
|
| const std::string& password) {
|
| if (!sync_prefs_.IsStartSuppressed() && !password.empty()) {
|
| cached_passphrase_ = password;
|
| @@ -2311,7 +2312,8 @@ void ProfileSyncService::GoogleSigninSucceeded(const std::string& username,
|
| }
|
| }
|
|
|
| -void ProfileSyncService::GoogleSignedOut(const std::string& username) {
|
| +void ProfileSyncService::GoogleSignedOut(const std::string& account_id,
|
| + const std::string& username) {
|
| sync_disabled_by_admin_ = false;
|
| DisableForUser();
|
|
|
|
|