Index: third_party/WebKit/Source/core/svg/SVGElementRareData.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp b/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp |
index e3119af19daa6a8df9a1b989df192e4cd4ec7be5..f9edbfdae929d89c6bd4e78dcd50b550371b78e0 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGElementRareData.cpp |
@@ -13,6 +13,26 @@ |
namespace blink { |
+SVGCursorElement* SVGElementRareData::cursorElement() const |
+{ |
+ return m_cursorElement; |
+} |
+ |
+void SVGElementRareData::setCursorElement(SVGCursorElement* cursorElement) |
+{ |
+ m_cursorElement = cursorElement; |
+} |
+ |
+CSSCursorImageValue* SVGElementRareData::cursorImageValue() const |
+{ |
+ return m_cursorImageValue; |
+} |
+ |
+void SVGElementRareData::setCursorImageValue(CSSCursorImageValue* cursorImageValue) |
+{ |
+ m_cursorImageValue = cursorImageValue; |
+} |
+ |
MutableStylePropertySet* SVGElementRareData::ensureAnimatedSMILStyleProperties() |
{ |
if (!m_animatedSMILStyleProperties) |