diff options
Diffstat (limited to 'WebCore/svg/SVGTransformable.h')
-rw-r--r-- | WebCore/svg/SVGTransformable.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/svg/SVGTransformable.h b/WebCore/svg/SVGTransformable.h index de806a3..da31c75 100644 --- a/WebCore/svg/SVGTransformable.h +++ b/WebCore/svg/SVGTransformable.h @@ -30,7 +30,7 @@ namespace WebCore { - class AffineTransform; + class TransformationMatrix; class AtomicString; class SVGTransform; class QualifiedName; @@ -44,10 +44,10 @@ namespace WebCore { static bool parseTransformAttribute(SVGTransformList*, const UChar*& ptr, const UChar* end); static bool parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform&); - AffineTransform getCTM(const SVGElement*) const; - AffineTransform getScreenCTM(const SVGElement*) const; + TransformationMatrix getCTM(const SVGElement*) const; + TransformationMatrix getScreenCTM(const SVGElement*) const; - virtual AffineTransform animatedLocalTransform() const = 0; + virtual TransformationMatrix animatedLocalTransform() const = 0; bool isKnownAttribute(const QualifiedName&); }; |