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

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

Issue 2485663002: Store CSSPropertyID in SVGAnimatedPropertyBase (Closed)
Patch Set: Add missing case Created 4 years, 1 month 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/SVGAnimatedPath.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.cpp b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.cpp
index 91529ef3da588f4bfc1a96cad2340e0edaea08bf..a2821543077d97a2e6da48456b7f32f87296db10 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedPath.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedPath.cpp
@@ -33,10 +33,12 @@
namespace blink {
SVGAnimatedPath::SVGAnimatedPath(SVGElement* contextElement,
- const QualifiedName& attributeName)
+ const QualifiedName& attributeName,
+ CSSPropertyID cssPropertyId)
: SVGAnimatedProperty<SVGPath>(contextElement,
attributeName,
- SVGPath::create()) {}
+ SVGPath::create(),
+ cssPropertyId) {}
SVGAnimatedPath::~SVGAnimatedPath() {}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAnimatedPath.h ('k') | third_party/WebKit/Source/core/svg/SVGAnimatedTypeAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698