Index: chrome/browser/ui/views/profiles/profile_chooser_view.cc |
diff --git a/chrome/browser/ui/views/profiles/profile_chooser_view.cc b/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
index c921a11fca5eabae1c7a3146a3a4c676a4fcb546..39010f08cfc8a978ad3924c9fa9285ed1e447564 100644 |
--- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
+++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
@@ -710,7 +710,7 @@ void ProfileChooserView::ButtonPressed(views::Button* sender, |
if (browser_->profile()->IsGuestSession()) |
profiles::CloseGuestProfileWindows(); |
else |
- chrome::ShowUserManager(browser_->profile()->GetPath()); |
+ chrome::ShowUserManager(base::FilePath()); |
PostActionPerformed(ProfileMetrics::PROFILE_DESKTOP_MENU_OPEN_USER_MANAGER); |
} else if (sender == go_incognito_button_) { |
DCHECK(ShouldShowGoIncognito()); |
@@ -758,7 +758,7 @@ void ProfileChooserView::ButtonPressed(views::Button* sender, |
} else if (sender == add_person_button_) { |
ProfileMetrics::LogProfileNewAvatarMenuNotYou( |
ProfileMetrics::PROFILE_AVATAR_MENU_NOT_YOU_ADD_PERSON); |
- chrome::ShowUserManager(browser_->profile()->GetPath()); |
+ chrome::ShowUserManager(base::FilePath()); |
} else if (sender == disconnect_button_) { |
ProfileMetrics::LogProfileNewAvatarMenuNotYou( |
ProfileMetrics::PROFILE_AVATAR_MENU_NOT_YOU_DISCONNECT); |