| Index: third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
|
| diff --git a/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h b/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
|
| index 35e6ac143ef701aef9e8ac196c355739d2346106..c67a4cb78f9ec14a975626f069be11d54587f254 100644
|
| --- a/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
|
| +++ b/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
|
| @@ -133,7 +133,7 @@ class SVGAnimatedPropertyCommon : public SVGAnimatedPropertyBase {
|
| }
|
|
|
| void setAnimatedValue(SVGPropertyBase* value) override {
|
| - ASSERT(value->type() == Property::classType());
|
| + DCHECK_EQ(value->type(), Property::classType());
|
| m_currentValue = static_cast<Property*>(value);
|
| }
|
|
|
| @@ -195,7 +195,7 @@ class SVGAnimatedProperty : public SVGAnimatedPropertyCommon<Property> {
|
| this->baseValue()->setValue(value);
|
| m_baseValueUpdated = true;
|
|
|
| - ASSERT(this->attributeName() != QualifiedName::null());
|
| + DCHECK(this->attributeName() != QualifiedName::null());
|
| this->contextElement()->invalidateSVGAttributes();
|
| this->contextElement()->svgAttributeBaseValChanged(this->attributeName());
|
| }
|
|
|