| Index: Source/core/svg/properties/SVGPropertyTearOff.h
|
| diff --git a/Source/core/svg/properties/SVGPropertyTearOff.h b/Source/core/svg/properties/SVGPropertyTearOff.h
|
| index caee1657c7733250c7f932545dd139fb8132ce2c..e949dd01f819e564189ace7bce09402a6839f831 100644
|
| --- a/Source/core/svg/properties/SVGPropertyTearOff.h
|
| +++ b/Source/core/svg/properties/SVGPropertyTearOff.h
|
| @@ -86,7 +86,7 @@ public:
|
| virtual AnimatedPropertyType type() const = 0;
|
|
|
| protected:
|
| - SVGPropertyTearOffBase(SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
|
| + SVGPropertyTearOffBase(SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| : m_contextElement(contextElement)
|
| , m_propertyIsAnimVal(propertyIsAnimVal)
|
| , m_isReadOnlyProperty(false)
|
| @@ -122,7 +122,7 @@ public:
|
| }
|
|
|
| protected:
|
| - SVGPropertyTearOff(PassRefPtr<Property> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
|
| + SVGPropertyTearOff(PassRefPtr<Property> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| : SVGPropertyTearOffBase(contextElement, propertyIsAnimVal, attributeName)
|
| , m_target(target)
|
| {
|
|
|