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

Unified Diff: Source/core/svg/SVGAnimateTransformElement.cpp

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove m_zoomAndPan Created 6 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 | « Source/core/svg/SVGAnimateTransformElement.h ('k') | Source/core/svg/SVGAnimatedNewPropertyAnimator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimateTransformElement.cpp
diff --git a/Source/core/svg/SVGAnimateTransformElement.cpp b/Source/core/svg/SVGAnimateTransformElement.cpp
index 6774a387307d08f41cfc80ee7f8fe64d67e32736..70dc573112f1a178e318f8ccf33b33975cbc1ec8 100644
--- a/Source/core/svg/SVGAnimateTransformElement.cpp
+++ b/Source/core/svg/SVGAnimateTransformElement.cpp
@@ -31,7 +31,7 @@ namespace WebCore {
inline SVGAnimateTransformElement::SVGAnimateTransformElement(Document& document)
: SVGAnimateElement(SVGNames::animateTransformTag, document)
- , m_type(SVGTransform::SVG_TRANSFORM_UNKNOWN)
+ , m_type(SVG_TRANSFORM_UNKNOWN)
{
ScriptWrappable::init(this);
}
@@ -70,8 +70,8 @@ void SVGAnimateTransformElement::parseAttribute(const QualifiedName& name, const
if (name == SVGNames::typeAttr) {
m_type = parseTransformType(value);
- if (m_type == SVGTransform::SVG_TRANSFORM_MATRIX)
- m_type = SVGTransform::SVG_TRANSFORM_UNKNOWN;
+ if (m_type == SVG_TRANSFORM_MATRIX)
+ m_type = SVG_TRANSFORM_UNKNOWN;
return;
}
« no previous file with comments | « Source/core/svg/SVGAnimateTransformElement.h ('k') | Source/core/svg/SVGAnimatedNewPropertyAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698