| Index: third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h
|
| diff --git a/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h b/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h
|
| index ff916e38e02f5a5a7122da57000e35fdd1648ae9..dd552da40757ff8b7036b669cb248a782b9a76f3 100644
|
| --- a/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h
|
| +++ b/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h
|
| @@ -62,9 +62,9 @@ class SVGPropertyTearOffBase
|
|
|
| void attachToSVGElementAttribute(SVGElement* contextElement,
|
| const QualifiedName& attributeName) {
|
| - ASSERT(!isImmutable());
|
| - ASSERT(contextElement);
|
| - ASSERT(attributeName != QualifiedName::null());
|
| + DCHECK(!isImmutable());
|
| + DCHECK(contextElement);
|
| + DCHECK(attributeName != QualifiedName::null());
|
| m_contextElement = contextElement;
|
| m_attributeName = attributeName;
|
| }
|
| @@ -122,7 +122,7 @@ class SVGPropertyTearOff : public SVGPropertyTearOffBase {
|
| propertyIsAnimVal,
|
| attributeName),
|
| m_target(target) {
|
| - ASSERT(m_target);
|
| + DCHECK(m_target);
|
| }
|
|
|
| private:
|
|
|