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 417c6fcc4d1f470afef3c4ef62e415290d4fc923..6984d88963f5b45cd4ebce5ea949f0a962e78711 100644 |
--- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
+++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc |
@@ -1498,9 +1498,13 @@ views::View* ProfileChooserView::CreateOptionsView(bool display_lock) { |
l10n_util::GetStringUTF16(IDS_PROFILES_EXIT_GUEST) : |
l10n_util::GetStringUTF16(IDS_PROFILES_MANAGE_USERS_BUTTON); |
const int kIconSize = 16; |
+ |
+ gfx::VectorIconId settings_icon = switches::IsMaterialDesignUserMenu() ? |
+ gfx::VectorIconId::SETTINGS : gfx::VectorIconId::ACCOUNT_BOX; |
users_button_ = new BackgroundColorHoverButton( |
- this, text, gfx::CreateVectorIcon(gfx::VectorIconId::ACCOUNT_BOX, |
- kIconSize, gfx::kChromeIconGrey)); |
+ this, text, gfx::CreateVectorIcon(settings_icon, kIconSize, |
+ gfx::kChromeIconGrey)); |
+ |
layout->StartRow(1, 0); |
layout->AddView(users_button_); |