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

Unified Diff: ui/views/controls/menu/menu_image_util.cc

Issue 1406613002: For some vector icons, get the size from the vector definition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 | « ui/gfx/paint_vector_icon.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/menu/menu_image_util.cc
diff --git a/ui/views/controls/menu/menu_image_util.cc b/ui/views/controls/menu/menu_image_util.cc
index 55f6e551c2f485bdd38f6ed63fc01196f21726c7..7f342ac6dc11ca2719c219f1e9187066329207ef 100644
--- a/ui/views/controls/menu/menu_image_util.cc
+++ b/ui/views/controls/menu/menu_image_util.cc
@@ -12,8 +12,7 @@
namespace views {
gfx::ImageSkia GetMenuCheckImage(SkColor icon_color) {
- return gfx::CreateVectorIcon(gfx::VectorIconId::MENU_CHECK, kMenuCheckSize,
Evan Stade 2016/04/26 16:58:29 In some places we aren't actually getting rid of a
- icon_color);
+ return gfx::CreateVectorIcon(gfx::VectorIconId::MENU_CHECK, icon_color);
}
gfx::ImageSkia GetRadioButtonImage(bool toggled,
@@ -27,8 +26,7 @@ gfx::ImageSkia GetRadioButtonImage(bool toggled,
}
gfx::ImageSkia GetSubmenuArrowImage(SkColor icon_color) {
- return gfx::CreateVectorIcon(gfx::VectorIconId::SUBMENU_ARROW,
- kSubmenuArrowSize, icon_color);
+ return gfx::CreateVectorIcon(gfx::VectorIconId::SUBMENU_ARROW, icon_color);
}
} // namespace views
« no previous file with comments | « ui/gfx/paint_vector_icon.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698