| Index: ui/gfx/render_text_unittest.cc
|
| diff --git a/ui/gfx/render_text_unittest.cc b/ui/gfx/render_text_unittest.cc
|
| index 751942ea78ea4e12b84bcbceaf4756f6d2b12faf..108beb3e880871e4af1e4b41b2bcb086d5cb58cf 100644
|
| --- a/ui/gfx/render_text_unittest.cc
|
| +++ b/ui/gfx/render_text_unittest.cc
|
| @@ -1345,10 +1345,11 @@ TEST_F(RenderTextTest, StringSizeRespectsFontListMetrics) {
|
| // Check that Arial and Symbol have different font metrics.
|
| Font arial_font("Arial", 16);
|
| ASSERT_EQ("arial",
|
| - StringToLowerASCII(arial_font.GetActualFontNameForTesting()));
|
| + base::StringToLowerASCII(arial_font.GetActualFontNameForTesting()));
|
| Font symbol_font("Symbol", 16);
|
| ASSERT_EQ("symbol",
|
| - StringToLowerASCII(symbol_font.GetActualFontNameForTesting()));
|
| + base::StringToLowerASCII(
|
| + symbol_font.GetActualFontNameForTesting()));
|
| EXPECT_NE(arial_font.GetHeight(), symbol_font.GetHeight());
|
| EXPECT_NE(arial_font.GetBaseline(), symbol_font.GetBaseline());
|
| // "a" should be rendered with Arial, not with Symbol.
|
|
|