Chromium Code Reviews| Index: third_party/WebKit/Source/platform/fonts/CharacterRange.h |
| diff --git a/third_party/WebKit/Source/platform/fonts/CharacterRange.h b/third_party/WebKit/Source/platform/fonts/CharacterRange.h |
| index 980c8b4b1f2a73bebe90890b5d228ab5cbcacb55..ff95533d9ddeb1f083ed48d2e2c147bc3c098e69 100644 |
| --- a/third_party/WebKit/Source/platform/fonts/CharacterRange.h |
| +++ b/third_party/WebKit/Source/platform/fonts/CharacterRange.h |
| @@ -9,7 +9,7 @@ namespace blink { |
| struct CharacterRange { |
| CharacterRange(float from, float to) : start(from), end(to) { |
| - ASSERT(start <= end); |
| + DCHECK_LE(start, end); |
| } |
| float width() const { return end - start; } |