| Index: ui/gfx/render_text_unittest.cc
|
| diff --git a/ui/gfx/render_text_unittest.cc b/ui/gfx/render_text_unittest.cc
|
| index 10a0a90b45ddd98269d27f387df9856bc368acfa..1c6f902d936fb435827912df67561e1d1af51c51 100644
|
| --- a/ui/gfx/render_text_unittest.cc
|
| +++ b/ui/gfx/render_text_unittest.cc
|
| @@ -15,6 +15,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "ui/gfx/break_list.h"
|
| #include "ui/gfx/canvas.h"
|
| +#include "ui/gfx/font.h"
|
| #include "ui/gfx/render_text_harfbuzz.h"
|
|
|
| #if defined(OS_WIN)
|
| @@ -2287,7 +2288,8 @@ TEST_F(RenderTextTest, HarfBuzz_NonExistentFont) {
|
| render_text.EnsureLayout();
|
| ASSERT_EQ(1U, render_text.runs_.size());
|
| internal::TextRunHarfBuzz* run = render_text.runs_[0];
|
| - render_text.ShapeRunWithFont(run, "TheFontThatDoesntExist");
|
| + render_text.ShapeRunWithFont(
|
| + run, "TheFontThatDoesntExist", FontRenderParams());
|
| }
|
|
|
| // Ensure an empty run returns sane values to queries.
|
|
|