Index: third_party/WebKit/Source/platform/fonts/SimpleFontData.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/SimpleFontData.cpp b/third_party/WebKit/Source/platform/fonts/SimpleFontData.cpp |
index 136998d0b3f5484dc9d93b37b9bdff9796e13c56..abd1895e368d172179aaaafe2c19efcb00c6b006 100644 |
--- a/third_party/WebKit/Source/platform/fonts/SimpleFontData.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/SimpleFontData.cpp |
@@ -289,7 +289,7 @@ const SimpleFontData* SimpleFontData::fontDataForCharacter(UChar32) const { |
Glyph SimpleFontData::glyphForCharacter(UChar32 codepoint) const { |
uint16_t glyph; |
SkTypeface* typeface = platformData().typeface(); |
- RELEASE_ASSERT(typeface); |
+ CHECK(typeface); |
typeface->charsToGlyphs(&codepoint, SkTypeface::kUTF32_Encoding, &glyph, 1); |
return glyph; |
} |