Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(559)

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimateTransformElement.h

Issue 2595393002: Fold SVGAnimatedTypeAnimator into SVGAnimateElement (Closed)
Patch Set: More ASSERT to DCHECK Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698