Index: third_party/WebKit/Source/platform/fonts/UTF16TextIterator.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.cpp b/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.cpp |
index b806ac94e8119c9f4519fb0b4efc382e7467f725..aa158e6226764b6b5e3549cde32c6a1028591f30 100644 |
--- a/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/UTF16TextIterator.cpp |
@@ -53,7 +53,7 @@ bool UTF16TextIterator::isValidSurrogatePair(UChar32& character) { |
} |
bool UTF16TextIterator::consumeSurrogatePair(UChar32& character) { |
- ASSERT(U16_IS_SURROGATE(character)); |
+ DCHECK(U16_IS_SURROGATE(character)); |
if (!isValidSurrogatePair(character)) { |
character = replacementCharacter; |