| Index: third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.cpp b/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.cpp
|
| index 502fb53f1927cf92d90615d408c9ae2fd2747375..013bfffca92ee027453cc0ecd680e38361e8a12d 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.cpp
|
| @@ -29,7 +29,7 @@ namespace blink {
|
|
|
| inline SVGAnimateTransformElement::SVGAnimateTransformElement(Document& document)
|
| : SVGAnimateElement(SVGNames::animateTransformTag, document)
|
| - , m_type(SVG_TRANSFORM_UNKNOWN)
|
| + , m_type(kSvgTransformUnknown)
|
| {
|
| }
|
|
|
| @@ -51,8 +51,8 @@ void SVGAnimateTransformElement::parseAttribute(const QualifiedName& name, const
|
| {
|
| if (name == SVGNames::typeAttr) {
|
| m_type = parseTransformType(value);
|
| - if (m_type == SVG_TRANSFORM_MATRIX)
|
| - m_type = SVG_TRANSFORM_UNKNOWN;
|
| + if (m_type == kSvgTransformMatrix)
|
| + m_type = kSvgTransformUnknown;
|
| return;
|
| }
|
|
|
|
|