Index: third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h |
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h b/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h |
index ad3bd3c32eca0178a8777e2030465669c0658065..094b43a40bb0c0e202bbd4a1b0fee182bc99ca09 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h |
+++ b/third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h |
@@ -34,8 +34,6 @@ class SVGAnimateTransformElement final : public SVGAnimateElement { |
public: |
DECLARE_NODE_FACTORY(SVGAnimateTransformElement); |
- SVGTransformType transformType() const { return m_type; } |
- |
private: |
explicit SVGAnimateTransformElement(Document&); |
@@ -45,7 +43,10 @@ class SVGAnimateTransformElement final : public SVGAnimateElement { |
const AtomicString&, |
const AtomicString&) override; |
- SVGTransformType m_type; |
+ void resolveTargetProperty() override; |
+ SVGPropertyBase* createPropertyForAnimation(const String&) const override; |
+ |
+ SVGTransformType m_transformType; |
}; |
} // namespace blink |