summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h b/chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h
index 86606d8890a..4a53eb4890d 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h
@@ -28,23 +28,21 @@
namespace WebCore {
-class AffineTransform;
-
class SVGAnimateTransformElement FINAL : public SVGAnimateElement {
public:
- static PassRefPtr<SVGAnimateTransformElement> create(Document&);
+ DECLARE_NODE_FACTORY(SVGAnimateTransformElement);
- SVGTransform::SVGTransformType transformType() const { return m_type; }
+ SVGTransformType transformType() const { return m_type; }
private:
explicit SVGAnimateTransformElement(Document&);
- virtual bool hasValidAttributeType();
+ virtual bool hasValidAttributeType() OVERRIDE;
bool isSupportedAttribute(const QualifiedName&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- SVGTransform::SVGTransformType m_type;
+ SVGTransformType m_type;
};
} // namespace WebCore