Index: third_party/WebKit/Source/platform/text/BidiCharacterRun.h |
diff --git a/third_party/WebKit/Source/platform/text/BidiCharacterRun.h b/third_party/WebKit/Source/platform/text/BidiCharacterRun.h |
index 807bc03b99db62f7f0c7d61d9368d0bdaecffe8e..2e2cc025fd6017807eab18951f6474788b8221f3 100644 |
--- a/third_party/WebKit/Source/platform/text/BidiCharacterRun.h |
+++ b/third_party/WebKit/Source/platform/text/BidiCharacterRun.h |
@@ -39,7 +39,7 @@ struct BidiCharacterRun { |
next_(0), |
start_(start), |
stop_(stop) { |
- ASSERT(start_ <= stop_); |
+ DCHECK_LE(start_, stop_); |
if (dir == WTF::Unicode::kOtherNeutral) |
dir = override_dir; |