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

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

Issue 1674353005: Remove references to SVGPathElement from SVGAnimatedPath (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/SVGAnimatedPath.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/SVGAnimatedPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698