| Index: third_party/WebKit/Source/core/svg/SVGElementRareData.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGElementRareData.h b/third_party/WebKit/Source/core/svg/SVGElementRareData.h
|
| index 74a5e8268838ee37c0ded44d4e6f4a23d34f5c65..8c3a1aceab07d22e1f8e1d7f2256cfc957318614 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGElementRareData.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGElementRareData.h
|
| @@ -60,14 +60,14 @@ public:
|
| bool instanceUpdatesBlocked() const { return m_instancesUpdatesBlocked; }
|
| void setInstanceUpdatesBlocked(bool value) { m_instancesUpdatesBlocked = value; }
|
|
|
| - SVGCursorElement* cursorElement() const;
|
| - void setCursorElement(SVGCursorElement*);
|
| + SVGCursorElement* cursorElement() const { return m_cursorElement; }
|
| + void setCursorElement(SVGCursorElement* cursorElement) { m_cursorElement = cursorElement; }
|
|
|
| SVGElement* correspondingElement() const { return m_correspondingElement.get(); }
|
| void setCorrespondingElement(SVGElement* correspondingElement) { m_correspondingElement = correspondingElement; }
|
|
|
| - CSSCursorImageValue* cursorImageValue() const;
|
| - void setCursorImageValue(CSSCursorImageValue*);
|
| + CSSCursorImageValue* cursorImageValue() const { return m_cursorImageValue; }
|
| + void setCursorImageValue(CSSCursorImageValue* cursorImageValue) { m_cursorImageValue = cursorImageValue; }
|
|
|
| MutableStylePropertySet* animatedSMILStyleProperties() const { return m_animatedSMILStyleProperties.get(); }
|
| MutableStylePropertySet* ensureAnimatedSMILStyleProperties();
|
|
|