| Index: ui/gfx/render_text_harfbuzz.cc
|
| diff --git a/ui/gfx/render_text_harfbuzz.cc b/ui/gfx/render_text_harfbuzz.cc
|
| index e543bc5987583206686d593146fff9e6028f834b..9d72a13f6f318cdb181f0f09ec45b37f3b4b3c4d 100644
|
| --- a/ui/gfx/render_text_harfbuzz.cc
|
| +++ b/ui/gfx/render_text_harfbuzz.cc
|
| @@ -1315,8 +1315,8 @@ void RenderTextHarfBuzz::ItemizeTextToRuns(
|
| const size_t new_run_break = std::min(
|
| static_cast<size_t>(script_item_break),
|
| TextIndexToGivenTextIndex(text, style.GetRange().end()));
|
| - CHECK_GT(new_run_break, run_break)
|
| - << "It must proceed! " << text << " " << run_break;
|
| + // It must proceed! |text| |run_break|
|
| + CHECK_GT(new_run_break, run_break);
|
| run_break = new_run_break;
|
|
|
| // Break runs at certain characters that need to be rendered separately to
|
|
|