Index: third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h |
diff --git a/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h b/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h |
index dde7aebf8f03e4bf121761af34dfdb088d9e6b8e..ed4edb10d8d01541b0d7792f7dbbc5c05bd10b74 100644 |
--- a/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h |
+++ b/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h |
@@ -70,7 +70,7 @@ class ShapeCache { |
unsigned short length, |
TextDirection direction) |
: m_length(length), m_direction(static_cast<unsigned>(direction)) { |
- ASSERT(length <= s_capacity); |
+ DCHECK(length <= s_capacity); |
tkent
2017/04/09 23:13:23
Use DCHECK_LE
Hwanseung Lee
2017/04/11 22:25:09
it was cause of build fail. so i did not change.
|
StringHasher hasher; |