| Index: Source/core/svg/SVGAnimateTransformElement.cpp
|
| diff --git a/Source/core/svg/SVGAnimateTransformElement.cpp b/Source/core/svg/SVGAnimateTransformElement.cpp
|
| index 051cf9377d907b3704f3b7d2e3bc2fb4a6069e5b..755420076b45ea4b2d57d11cfa0adf399acbfb93 100644
|
| --- a/Source/core/svg/SVGAnimateTransformElement.cpp
|
| +++ b/Source/core/svg/SVGAnimateTransformElement.cpp
|
| @@ -25,7 +25,8 @@
|
| #include "core/svg/SVGAnimateTransformElement.h"
|
|
|
| #include "SVGNames.h"
|
| -#include "core/svg/SVGTransformable.h"
|
| +#include "core/svg/SVGParserUtilities.h"
|
| +#include "core/svg/SVGTransform.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -70,7 +71,7 @@ void SVGAnimateTransformElement::parseAttribute(const QualifiedName& name, const
|
| }
|
|
|
| if (name == SVGNames::typeAttr) {
|
| - m_type = SVGTransformable::parseTransformType(value);
|
| + m_type = parseTransformType(value);
|
| if (m_type == SVGTransform::SVG_TRANSFORM_MATRIX)
|
| m_type = SVGTransform::SVG_TRANSFORM_UNKNOWN;
|
| return;
|
|
|