| Index: Source/core/svg/SVGSVGElement.h
|
| diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h
|
| index 45cc287b0a7f1ec703b1fa44ebc47be70852b48a..eaea845d55d6d6b9bf08232c7fdd3458222b2e15 100644
|
| --- a/Source/core/svg/SVGSVGElement.h
|
| +++ b/Source/core/svg/SVGSVGElement.h
|
| @@ -83,7 +83,7 @@ public:
|
| float currentScale() const;
|
| void setCurrentScale(float scale);
|
|
|
| - FloatPoint& currentTranslate() { return m_translation; }
|
| + SVGPoint& currentTranslate() { return m_translation; }
|
| void setCurrentTranslate(const FloatPoint&);
|
|
|
| // Only used from the bindings.
|
| @@ -112,7 +112,7 @@ public:
|
| static float createSVGNumber();
|
| static SVGLength createSVGLength();
|
| static SVGAngle createSVGAngle();
|
| - static FloatPoint createSVGPoint();
|
| + static SVGPoint createSVGPoint();
|
| static SVGMatrix createSVGMatrix();
|
| static FloatRect createSVGRect();
|
| static SVGTransform createSVGTransform();
|
| @@ -174,7 +174,7 @@ private:
|
| bool m_useCurrentView;
|
| SVGZoomAndPanType m_zoomAndPan;
|
| RefPtr<SMILTimeContainer> m_timeContainer;
|
| - FloatPoint m_translation;
|
| + SVGPoint m_translation;
|
| RefPtr<SVGViewSpec> m_viewSpec;
|
| };
|
|
|
|
|