Index: third_party/WebKit/Source/core/svg/SVGAnimatedPath.h |
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h |
index 793bdc12ff434d103693fd94f2b0e1965412032e..72929ef062b8eaf70f1e4d5f6eb1c0362169bee7 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h |
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.h |
@@ -36,19 +36,17 @@ |
namespace blink { |
-class SVGPathElement; |
- |
class SVGAnimatedPath : public SVGAnimatedProperty<SVGPath> { |
public: |
~SVGAnimatedPath() override; |
- static PassRefPtrWillBeRawPtr<SVGAnimatedPath> create(SVGPathElement* contextElement, const QualifiedName& attributeName) |
+ static PassRefPtrWillBeRawPtr<SVGAnimatedPath> create(SVGElement* contextElement, const QualifiedName& attributeName) |
{ |
return adoptRefWillBeNoop(new SVGAnimatedPath(contextElement, attributeName)); |
} |
protected: |
- SVGAnimatedPath(SVGPathElement*, const QualifiedName&); |
+ SVGAnimatedPath(SVGElement*, const QualifiedName&); |
}; |
} // namespace blink |