| 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 76ddb074f23e690bbbf0e8078ef11c7559210f85..70d0b31972c58b53ea8c91549f03d033851f5ec6 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 = kReplacementCharacter;
|
|
|