Chromium Code Reviews| Index: chrome/browser/policy/cloud/user_policy_signin_service.cc |
| diff --git a/chrome/browser/policy/cloud/user_policy_signin_service.cc b/chrome/browser/policy/cloud/user_policy_signin_service.cc |
| index ad412ad55fc92d1d9793b77df53757eb0b5c9834..d51a50b369e804af47624c136531e5a5b4f3c776 100644 |
| --- a/chrome/browser/policy/cloud/user_policy_signin_service.cc |
| +++ b/chrome/browser/policy/cloud/user_policy_signin_service.cc |
| @@ -226,11 +226,8 @@ UserPolicySigninService::UserPolicySigninService( |
| Profile* profile) |
| : profile_(profile), |
| ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)) { |
|
tapted
2013/04/24 08:08:35
heads up: I just saw a change land that got rid of
gab
2013/04/24 20:24:59
Ok thanks.
|
| - CommandLine* cmd_line = CommandLine::ForCurrentProcess(); |
| - if (profile_->GetPrefs()->GetBoolean(prefs::kDisableCloudPolicyOnSignin) || |
| - ProfileManager::IsImportProcess(*cmd_line)) { |
| + if (profile_->GetPrefs()->GetBoolean(prefs::kDisableCloudPolicyOnSignin)) |
| return; |
| - } |
| // Initialize/shutdown the UserCloudPolicyManager when the user signs out. |
| registrar_.Add(this, |