Index: chrome/browser/profiles/profile_manager.cc |
diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc |
index 956d37a7a417cb21dff69e504e19650b6372fbda..3586a41177351111f92cca0b7de1969584932c70 100644 |
--- a/chrome/browser/profiles/profile_manager.cc |
+++ b/chrome/browser/profiles/profile_manager.cc |
@@ -570,7 +570,11 @@ void ProfileManager::ScheduleProfileForDeletion(const FilePath& profile_dir) { |
// static |
bool ProfileManager::IsMultipleProfilesEnabled() { |
+#if defined(OS_MACOSX) || (defined(TOOLKIT_VIEWS) && !defined(OS_CHROMEOS)) |
+ return true; |
+#else |
return CommandLine::ForCurrentProcess()->HasSwitch(switches::kMultiProfiles); |
+#endif |
} |
ProfileManagerWithoutInit::ProfileManagerWithoutInit( |