| Index: Source/core/svg/SVGCursorElement.h
|
| diff --git a/Source/core/svg/SVGCursorElement.h b/Source/core/svg/SVGCursorElement.h
|
| index 5701130852163cac55bafc4657969ea9769dae34..c0717380e9d6d6ec328c4496e05e543c41e03e41 100644
|
| --- a/Source/core/svg/SVGCursorElement.h
|
| +++ b/Source/core/svg/SVGCursorElement.h
|
| @@ -44,6 +44,9 @@ public:
|
| void removeClient(SVGElement*);
|
| void removeReferencedElement(SVGElement*);
|
|
|
| + SVGAnimatedLength* x() const { return m_x.get(); }
|
| + SVGAnimatedLength* y() const { return m_y.get(); }
|
| +
|
| private:
|
| explicit SVGCursorElement(Document&);
|
|
|
| @@ -55,9 +58,9 @@ private:
|
|
|
| virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
|
|
|
| + RefPtr<SVGAnimatedLength> m_x;
|
| + RefPtr<SVGAnimatedLength> m_y;
|
| BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGCursorElement)
|
| - DECLARE_ANIMATED_LENGTH(X, x)
|
| - DECLARE_ANIMATED_LENGTH(Y, y)
|
| DECLARE_ANIMATED_STRING(Href, href)
|
| DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesRequired)
|
| END_DECLARE_ANIMATED_PROPERTIES
|
|
|