| Index: chrome/browser/chromeos/login/login_utils.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/login_utils.cc (revision 183978)
|
| +++ chrome/browser/chromeos/login/login_utils.cc (working copy)
|
| @@ -227,7 +227,6 @@
|
| virtual void CompleteProfileCreate(Profile* user_profile) OVERRIDE;
|
|
|
| // OAuthLoginManager::Delegate overrides.
|
| - virtual void OnCompletedMergeSession() OVERRIDE;
|
| virtual void OnCompletedAuthentication(Profile* user_profile) OVERRIDE;
|
| virtual void OnFoundStoredTokens() OVERRIDE;
|
|
|
| @@ -520,8 +519,6 @@
|
| void LoginUtilsImpl::RestoreAuthSession(Profile* user_profile,
|
| bool restore_from_auth_cookies) {
|
| DCHECK(authenticator_ || !restore_from_auth_cookies);
|
| - UserManager::Get()->SetMergeSessionState(
|
| - UserManager::MERGE_STATUS_IN_PROCESS);
|
| // Remove legacy OAuth1 token if we have one. If it's valid, we should already
|
| // have OAuth2 refresh token in TokenService that could be used to retrieve
|
| // all other tokens and credentials.
|
| @@ -957,10 +954,6 @@
|
| StartSignedInServices(user_profile);
|
| }
|
|
|
| -void LoginUtilsImpl::OnCompletedMergeSession() {
|
| - UserManager::Get()->SetMergeSessionState(UserManager::MERGE_STATUS_DONE);
|
| -}
|
| -
|
| void LoginUtilsImpl::OnFoundStoredTokens() {
|
| // We don't need authenticator instance any more since its cookie jar
|
| // is not going to needed to mint OAuth tokens. Reset it so that
|
|
|