Index: third_party/WebKit/Source/platform/text/Character.cpp |
diff --git a/third_party/WebKit/Source/platform/text/Character.cpp b/third_party/WebKit/Source/platform/text/Character.cpp |
index 2b967836eff98da26cee928334197ba542b4281a..3a32e3a560615343eb40bc49226c1adecdb7e7d5 100644 |
--- a/third_party/WebKit/Source/platform/text/Character.cpp |
+++ b/third_party/WebKit/Source/platform/text/Character.cpp |
@@ -84,7 +84,7 @@ static UTrie2* CreateTrie() { |
UTrie2* trie = utrie2_openFromSerialized( |
UTrie2ValueBits::UTRIE2_16_VALUE_BITS, kSerializedCharacterData, |
kSerializedCharacterDataSize, nullptr, &error); |
- ASSERT(error == U_ZERO_ERROR); |
+ DCHECK_EQ(error, U_ZERO_ERROR); |
return trie; |
} |