| 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 aa3ade501c117ea8100156af170511de9164aa20..7417cb35f20569b6e3354eb1d31fe0d8502a3ca6 100644
|
| --- a/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| +++ b/chrome/browser/ui/views/profiles/profile_chooser_view.cc
|
| @@ -1545,7 +1545,7 @@ views::View* ProfileChooserView::CreateOptionsView(bool display_lock,
|
| if (service->GetBoolean(prefs::kBrowserGuestModeEnabled)) {
|
| guest_profile_button_ = new BackgroundColorHoverButton(
|
| this, l10n_util::GetStringUTF16(IDS_GUEST_PROFILE_NAME),
|
| - gfx::CreateVectorIcon(gfx::VectorIconId::ACCOUNT_BOX, kIconSize,
|
| + gfx::CreateVectorIcon(gfx::VectorIconId::ACCOUNT_CIRCLE, kIconSize,
|
| gfx::kChromeIconGrey));
|
| layout->StartRow(1, 0);
|
| layout->AddView(guest_profile_button_);
|
| @@ -1606,7 +1606,7 @@ views::View* ProfileChooserView::CreateOptionsView(bool display_lock,
|
| close_all_windows_button_ = new BackgroundColorHoverButton(
|
| this,
|
| l10n_util::GetStringUTF16(IDS_PROFILES_CLOSE_ALL_WINDOWS_BUTTON),
|
| - gfx::CreateVectorIcon(gfx::VectorIconId::LOCK, kIconSize,
|
| + gfx::CreateVectorIcon(gfx::VectorIconId::CLOSE_ALL, kIconSize,
|
| gfx::kChromeIconGrey));
|
| layout->StartRow(1, 0);
|
| layout->AddView(close_all_windows_button_);
|
|
|