| Index: third_party/WebKit/Source/web/ContextFeaturesClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ContextFeaturesClientImpl.cpp b/third_party/WebKit/Source/web/ContextFeaturesClientImpl.cpp
|
| index 32cdf32cc559501438a3fb95402ac67b7f5d44cd..2e36ae4f009b7914a564a66e46dcb5088fa2523c 100644
|
| --- a/third_party/WebKit/Source/web/ContextFeaturesClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ContextFeaturesClientImpl.cpp
|
| @@ -75,7 +75,7 @@ class ContextFeaturesCache final
|
|
|
| Entry& entryFor(ContextFeatures::FeatureType type) {
|
| size_t index = static_cast<size_t>(type);
|
| - ASSERT_WITH_SECURITY_IMPLICATION(index < ContextFeatures::FeatureTypeSize);
|
| + SECURITY_DCHECK(index < ContextFeatures::FeatureTypeSize);
|
| return m_entries[index];
|
| }
|
|
|
|
|