Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2066)

Unified Diff: chrome/browser/ui/views/profiles/profile_chooser_view.cc

Issue 2105863005: Added/replaced icons in material design user menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/gfx/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_);
« no previous file with comments | « no previous file | ui/gfx/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698