| 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 56f4cca5dd3eb0c08fb1cfd37d053b508c9b1848..e441747537db4950d987ed9cccfd805a2e9f9da2 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; }
|
|
|