diff options
-rw-r--r-- | chrome/browser/chromeos/cros/fake_mount_library.h | 2 | ||||
-rw-r--r-- | chrome/browser/profile_manager.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/cros/fake_mount_library.h b/chrome/browser/chromeos/cros/fake_mount_library.h index 4f99761..4fea9ad 100644 --- a/chrome/browser/chromeos/cros/fake_mount_library.h +++ b/chrome/browser/chromeos/cros/fake_mount_library.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. diff --git a/chrome/browser/profile_manager.cc b/chrome/browser/profile_manager.cc index 4f6ec85..8770b1d 100644 --- a/chrome/browser/profile_manager.cc +++ b/chrome/browser/profile_manager.cc @@ -135,8 +135,8 @@ Profile* ProfileManager::GetDefaultProfile(const FilePath& user_data_dir) { // many of the browser and ui tests fail. We do return the OTR profile // if the login-profile switch is passed so that we can test this. // TODO(davemoore) Fix the tests so they allow OTR profiles. - if (false && (!command_line.HasSwitch(switches::kTestType) || - command_line.HasSwitch(switches::kLoginProfile))) { + if (!command_line.HasSwitch(switches::kTestType) || + command_line.HasSwitch(switches::kLoginProfile)) { // Don't init extensions for this profile profile = GetProfile(default_profile_dir, false); profile = profile->GetOffTheRecordProfile(); |