| Index: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| index 9da262aec81ba00e4b9a8eb8617605240191dd92..69210459be3136d56ecece7e6cd5b5358b4aa62b 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
|
| @@ -59,7 +59,7 @@ public:
|
| virtual bool hasValidAttributeName();
|
| virtual void animationAttributeChanged() = 0;
|
|
|
| - SMILTimeContainer* timeContainer() const;
|
| + SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); }
|
|
|
| SVGElement* targetElement() const { return m_targetElement; }
|
| const QualifiedName& attributeName() const { return m_attributeName; }
|
| @@ -199,7 +199,7 @@ private:
|
| int repeat() const { return m_repeat; }
|
| SVGSMILElement* syncBase() const { return m_syncBase.get(); }
|
| void setSyncBase(SVGSMILElement* element) { m_syncBase = element; }
|
| - ConditionEventListener* eventListener() const;
|
| + ConditionEventListener* eventListener() const { return m_eventListener.get(); }
|
| void setEventListener(PassRefPtrWillBeRawPtr<ConditionEventListener>);
|
|
|
| private:
|
|
|