| Index: chrome/browser/chromeos/login/login_display_host_impl.cc
|
| diff --git a/chrome/browser/chromeos/login/login_display_host_impl.cc b/chrome/browser/chromeos/login/login_display_host_impl.cc
|
| index a1c97356f7a0856d0e53da1e5e3adae962c05704..baafce77656b822ef8d266b9ffc0e77a5f2edc82 100644
|
| --- a/chrome/browser/chromeos/login/login_display_host_impl.cc
|
| +++ b/chrome/browser/chromeos/login/login_display_host_impl.cc
|
| @@ -375,13 +375,10 @@ LoginDisplayHostImpl::~LoginDisplayHostImpl() {
|
|
|
| default_host_ = NULL;
|
| // TODO(tengs): This should be refactored. See crbug.com/314934.
|
| - if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableDriveOfflineFirstRun)) {
|
| - if (UserManager::Get()->IsCurrentUserNew()) {
|
| - // DriveOptInController will delete itself when finished.
|
| - (new DriveFirstRunController(
|
| - ProfileManager::GetActiveUserProfile()))->EnableOfflineMode();
|
| - }
|
| + if (UserManager::Get()->IsCurrentUserNew()) {
|
| + // DriveOptInController will delete itself when finished.
|
| + (new DriveFirstRunController(
|
| + ProfileManager::GetActiveUserProfile()))->EnableOfflineMode();
|
| }
|
| }
|
|
|
|
|