| Index: Source/core/svg/SVGPreserveAspectRatioTearOff.h
|
| diff --git a/Source/core/svg/SVGPreserveAspectRatioTearOff.h b/Source/core/svg/SVGPreserveAspectRatioTearOff.h
|
| index 9a1036e2d29575e9b764b999d7bf3f44f8fe05bb..fd29b1d6e276db4414521c8cc61a9ff4f9b90e86 100644
|
| --- a/Source/core/svg/SVGPreserveAspectRatioTearOff.h
|
| +++ b/Source/core/svg/SVGPreserveAspectRatioTearOff.h
|
| @@ -59,7 +59,7 @@ public:
|
| SVG_MEETORSLICE_SLICE = SVGPreserveAspectRatio::SVG_MEETORSLICE_SLICE
|
| };
|
|
|
| - static PassRefPtr<SVGPreserveAspectRatioTearOff> create(PassRefPtr<SVGPreserveAspectRatio> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName())
|
| + static PassRefPtr<SVGPreserveAspectRatioTearOff> create(PassRefPtr<SVGPreserveAspectRatio> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
|
| {
|
| return adoptRef(new SVGPreserveAspectRatioTearOff(target, contextElement, propertyIsAnimVal, attributeName));
|
| }
|
| @@ -70,7 +70,7 @@ public:
|
| unsigned short meetOrSlice() { return target()->meetOrSlice(); }
|
|
|
| private:
|
| - SVGPreserveAspectRatioTearOff(PassRefPtr<SVGPreserveAspectRatio>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = nullQName());
|
| + SVGPreserveAspectRatioTearOff(PassRefPtr<SVGPreserveAspectRatio>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
|
| };
|
|
|
| } // namespace WebCore
|
|
|