Index: Source/core/svg/SVGAnimateTransformElement.h |
diff --git a/Source/core/svg/SVGAnimateTransformElement.h b/Source/core/svg/SVGAnimateTransformElement.h |
index 16b46378f4b426e30febc14a7a630aeb2e35779f..a04363354024ffc84baac182aa285c8df57044c2 100644 |
--- a/Source/core/svg/SVGAnimateTransformElement.h |
+++ b/Source/core/svg/SVGAnimateTransformElement.h |
@@ -34,7 +34,7 @@ class SVGAnimateTransformElement FINAL : public SVGAnimateElement { |
public: |
static PassRefPtr<SVGAnimateTransformElement> create(Document&); |
- SVGTransform::SVGTransformType transformType() const { return m_type; } |
+ SVGTransformType transformType() const { return m_type; } |
private: |
explicit SVGAnimateTransformElement(Document&); |
@@ -44,7 +44,7 @@ private: |
bool isSupportedAttribute(const QualifiedName&); |
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; |
- SVGTransform::SVGTransformType m_type; |
+ SVGTransformType m_type; |
}; |
DEFINE_NODE_TYPE_CASTS(SVGAnimateTransformElement, hasTagName(SVGNames::animateTransformTag)); |