| Index: third_party/WebKit/Source/platform/fonts/GlyphMetricsMap.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/GlyphMetricsMap.h b/third_party/WebKit/Source/platform/fonts/GlyphMetricsMap.h
|
| index 6e833f7105ab879caf4a841ac71e8a1cad8c5f60..aee4c66c7532df7fc8029f02355c87a33d4dbdca 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/GlyphMetricsMap.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/GlyphMetricsMap.h
|
| @@ -72,7 +72,7 @@ class GlyphMetricsMap {
|
| setMetricsForIndex(glyph % size, metrics);
|
| }
|
| void setMetricsForIndex(unsigned index, const T& metrics) {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(index < size);
|
| + SECURITY_DCHECK(index < size);
|
| m_metrics[index] = metrics;
|
| }
|
|
|
|
|