Index: chrome/browser/ui/cocoa/wrench_menu/wrench_menu_controller.mm |
diff --git a/chrome/browser/ui/cocoa/wrench_menu/wrench_menu_controller.mm b/chrome/browser/ui/cocoa/wrench_menu/wrench_menu_controller.mm |
index 0e9033f05da0276e578b49b6e5d7a17dff208cc8..4e8785754b30e22506e0c36954c95e4dd9e8fd2c 100644 |
--- a/chrome/browser/ui/cocoa/wrench_menu/wrench_menu_controller.mm |
+++ b/chrome/browser/ui/cocoa/wrench_menu/wrench_menu_controller.mm |
@@ -159,10 +159,11 @@ class ZoomLevelObserver { |
[[menuItem representedObject] pointerValue]); |
// The section headers in the recent tabs submenu should be bold and black if |
- // a font is specified for the items (bold is already applied in the |
- // |MenuController| as the font returned by |GetLabelFontAt| is bold). |
+ // a font list is specified for the items (bold is already applied in the |
+ // |MenuController| as the font list returned by |GetLabelFontListAt| is |
+ // bold). |
if (model && model == [self recentTabsMenuModel]) { |
- if (model->GetLabelFontAt([item tag])) { |
+ if (model->GetLabelFontListAt([item tag])) { |
DCHECK([menuItem attributedTitle]); |
base::scoped_nsobject<NSMutableAttributedString> title( |
[[NSMutableAttributedString alloc] |