| Index: third_party/WebKit/Source/core/svg/properties/SVGProperty.h
|
| diff --git a/third_party/WebKit/Source/core/svg/properties/SVGProperty.h b/third_party/WebKit/Source/core/svg/properties/SVGProperty.h
|
| index 2538e50932d2f274747592d36702511506da9adf..948c03c8262e984724c049e987cfddd3796c0982 100644
|
| --- a/third_party/WebKit/Source/core/svg/properties/SVGProperty.h
|
| +++ b/third_party/WebKit/Source/core/svg/properties/SVGProperty.h
|
| @@ -75,7 +75,7 @@ class SVGPropertyBase : public GarbageCollectedFinalized<SVGPropertyBase> {
|
|
|
| void setOwnerList(SVGPropertyBase* ownerList) {
|
| // Previous owner list must be cleared before setting new owner list.
|
| - ASSERT((!ownerList && m_ownerList) || (ownerList && !m_ownerList));
|
| + DCHECK((!ownerList && m_ownerList) || (ownerList && !m_ownerList));
|
|
|
| m_ownerList = ownerList;
|
| }
|
|
|