| Index: Source/core/svg/animation/SVGSMILElement.cpp
|
| diff --git a/Source/core/svg/animation/SVGSMILElement.cpp b/Source/core/svg/animation/SVGSMILElement.cpp
|
| index c8a3014aa6b709f073034e01da592986037b42e5..f79ef568573eb80b04096efbbee8c03eae19ce73 100644
|
| --- a/Source/core/svg/animation/SVGSMILElement.cpp
|
| +++ b/Source/core/svg/animation/SVGSMILElement.cpp
|
| @@ -239,7 +239,7 @@ void SVGSMILElement::buildPendingResource()
|
| }
|
| }
|
|
|
| -static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const String& attributeName)
|
| +static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString& attributeName)
|
| {
|
| ASSERT(svgElement);
|
| if (attributeName.isEmpty())
|
| @@ -247,8 +247,8 @@ static inline QualifiedName constructQualifiedName(const SVGElement* svgElement,
|
| if (!attributeName.contains(':'))
|
| return QualifiedName(nullAtom, attributeName, nullAtom);
|
|
|
| - String prefix;
|
| - String localName;
|
| + AtomicString prefix;
|
| + AtomicString localName;
|
| if (!Document::parseQualifiedName(attributeName, prefix, localName, ASSERT_NO_EXCEPTION))
|
| return anyQName();
|
|
|
|
|