Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/parser/HTMLEntityParser.h |
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.h b/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.h |
| index 8b9a26571230f9cb5e994acca08dfb49a053424d..d9850c050d3643fbe4a22e4cc62e9cb408d78d49 100644 |
| --- a/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.h |
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLEntityParser.h |
| @@ -46,7 +46,7 @@ class DecodedHTMLEntity { |
| bool isEmpty() const { return !length; } |
| void append(UChar c) { |
| - RELEASE_ASSERT(length < kMaxLength); |
| + CHECK(length < kMaxLength); |
| data[length++] = c; |
| } |