summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/graphics/SVGResourceMarker.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/graphics/SVGResourceMarker.h')
-rw-r--r--WebCore/svg/graphics/SVGResourceMarker.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/svg/graphics/SVGResourceMarker.h b/WebCore/svg/graphics/SVGResourceMarker.h
index 5c98d2f..f2ce33d 100644
--- a/WebCore/svg/graphics/SVGResourceMarker.h
+++ b/WebCore/svg/graphics/SVGResourceMarker.h
@@ -35,7 +35,7 @@
namespace WebCore {
class RenderSVGViewportContainer;
- class TransformationMatrix;
+ class AffineTransform;
class SVGResourceMarker : public SVGResource {
public:
@@ -55,8 +55,8 @@ namespace WebCore {
void setUseStrokeWidth(bool useStrokeWidth = true) { m_useStrokeWidth = useStrokeWidth; }
bool useStrokeWidth() const { return m_useStrokeWidth; }
- TransformationMatrix markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const;
- void draw(RenderObject::PaintInfo&, const TransformationMatrix&);
+ AffineTransform markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const;
+ void draw(RenderObject::PaintInfo&, const AffineTransform&);
virtual SVGResourceType resourceType() const { return MarkerResourceType; }
virtual TextStream& externalRepresentation(TextStream&) const;