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