Index: ui/views/controls/menu/menu_separator_win.cc |
diff --git a/ui/views/controls/menu/menu_separator_win.cc b/ui/views/controls/menu/menu_separator_win.cc |
index edd06d59548e6429b4f1f41a565ee8398bca9ed1..d20549bbc04c4aac05c9c0d8137d1f18d617dd9f 100644 |
--- a/ui/views/controls/menu/menu_separator_win.cc |
+++ b/ui/views/controls/menu/menu_separator_win.cc |
@@ -17,7 +17,7 @@ |
namespace views { |
void MenuSeparator::OnPaint(gfx::Canvas* canvas) { |
- const MenuConfig& config = MenuConfig::instance(); |
+ const MenuConfig& config = parent_menu_item_->GetMenuConfig(); |
// The gutter is rendered before the background. |
int start_x = 0; |
const ui::NativeTheme* theme = ui::NativeTheme::instance(); |
@@ -42,7 +42,7 @@ void MenuSeparator::OnPaint(gfx::Canvas* canvas) { |
gfx::Size MenuSeparator::GetPreferredSize() { |
return gfx::Size(10, // Just in case we're the only item in a menu. |
- MenuConfig::instance().separator_height); |
+ parent_menu_item_->GetMenuConfig().separator_height); |
} |
} // namespace views |