Chromium Code Reviews| Index: third_party/WebKit/Source/platform/fonts/Font.cpp |
| diff --git a/third_party/WebKit/Source/platform/fonts/Font.cpp b/third_party/WebKit/Source/platform/fonts/Font.cpp |
| index 2d9752f362ae77cd4fa7390a238903bba647f611..57a698dc196b814c3a8af97df300e9a558898d0b 100644 |
| --- a/third_party/WebKit/Source/platform/fonts/Font.cpp |
| +++ b/third_party/WebKit/Source/platform/fonts/Font.cpp |
| @@ -159,7 +159,7 @@ bool Font::drawBidiText(PaintCanvas* canvas, |
| // sub-run painting is not supported for Bidi text. |
| const TextRun& run = runInfo.run; |
| - ASSERT((runInfo.from == 0) && (runInfo.to == run.length())); |
| + DCHECK((runInfo.from == 0) && (runInfo.to == run.length())); |
|
tkent
2017/04/09 23:13:23
Split this into two DCHECK_EQs
Hwanseung Lee
2017/04/11 22:25:09
Done.
|
| BidiResolver<TextRunIterator, BidiCharacterRun> bidiResolver; |
| bidiResolver.setStatus( |
| BidiStatus(run.direction(), run.directionalOverride())); |