| Index: ash/system/tray/tray_utils.cc
|
| diff --git a/ash/system/tray/tray_utils.cc b/ash/system/tray/tray_utils.cc
|
| index 52fa917d93681641e1e841c94d5b7b7dc97f65b1..0145eae1af1f6cff59bc5bf44ddc6bd7b92d74d8 100644
|
| --- a/ash/system/tray/tray_utils.cc
|
| +++ b/ash/system/tray/tray_utils.cc
|
| @@ -14,10 +14,10 @@ namespace ash {
|
| namespace internal {
|
|
|
| void SetupLabelForTray(views::Label* label) {
|
| - // Making label_font static to avoid the time penalty of DeriveFont for
|
| - // all but the first call.
|
| + // Making label_font static to avoid the time penalty of Derive for all but
|
| + // the first call.
|
| static const gfx::FontList label_font_list(
|
| - gfx::FontList().DeriveFontListWithSizeDeltaAndStyle(1, gfx::Font::BOLD));
|
| + gfx::FontList().Derive(1, gfx::Font::BOLD));
|
| label->SetFontList(label_font_list);
|
| label->SetAutoColorReadabilityEnabled(false);
|
| label->SetEnabledColor(SK_ColorWHITE);
|
|
|