diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-05 14:34:32 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-05 14:34:32 -0800 |
commit | 635860845790a19bf50bbc51ba8fb66a96dde068 (patch) | |
tree | ef6ad9ff73a5b57f65249d4232a202fa77e6a140 /WebCore/svg/SVGLocatable.h | |
parent | 8e35f3cfc7fba1d1c829dc557ebad6409cbe16a2 (diff) | |
download | external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.zip external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.tar.gz external_webkit-635860845790a19bf50bbc51ba8fb66a96dde068.tar.bz2 |
auto import from //depot/cupcake/@136594
Diffstat (limited to 'WebCore/svg/SVGLocatable.h')
-rw-r--r-- | WebCore/svg/SVGLocatable.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/svg/SVGLocatable.h b/WebCore/svg/SVGLocatable.h index b1601ce..ccb9072 100644 --- a/WebCore/svg/SVGLocatable.h +++ b/WebCore/svg/SVGLocatable.h @@ -29,7 +29,7 @@ namespace WebCore { - class AffineTransform; + class TransformationMatrix; class FloatRect; class SVGElement; @@ -43,17 +43,17 @@ namespace WebCore { virtual SVGElement* farthestViewportElement() const = 0; virtual FloatRect getBBox() const = 0; - virtual AffineTransform getCTM() const = 0; - virtual AffineTransform getScreenCTM() const = 0; - AffineTransform getTransformToElement(SVGElement*, ExceptionCode&) const; + virtual TransformationMatrix getCTM() const = 0; + virtual TransformationMatrix getScreenCTM() const = 0; + TransformationMatrix getTransformToElement(SVGElement*, ExceptionCode&) const; static SVGElement* nearestViewportElement(const SVGElement*); static SVGElement* farthestViewportElement(const SVGElement*); protected: static FloatRect getBBox(const SVGElement*); - static AffineTransform getCTM(const SVGElement*); - static AffineTransform getScreenCTM(const SVGElement*); + static TransformationMatrix getCTM(const SVGElement*); + static TransformationMatrix getScreenCTM(const SVGElement*); }; } // namespace WebCore |