| Index: third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGEnumeration.h b/third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| index ab7b58077ffb85cdb2a4f3a4d4465919d4854687..52837b8f8ec3eb5d6e74dd4e6a64e15065640856 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| @@ -120,7 +120,7 @@ class SVGEnumeration : public SVGEnumerationBase {
|
| SVGEnumerationBase* clone() const override { return create(enumValue()); }
|
|
|
| Enum enumValue() const {
|
| - ASSERT(m_value <= maxInternalEnumValue());
|
| + DCHECK_LE(m_value, maxInternalEnumValue());
|
| return static_cast<Enum>(m_value);
|
| }
|
|
|
|
|