| Index: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| index fd7c8a45fbcda9446bb6d81d4fd108f24cf9a4fe..e06318d3a366e9f5781c94f75ee3e436b1fc40f6 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| @@ -177,6 +177,11 @@ SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const Str
|
| {
|
| }
|
|
|
| +ConditionEventListener* SVGSMILElement::Condition::eventListener() const
|
| +{
|
| + return m_eventListener.get();
|
| +}
|
| +
|
| SVGSMILElement::SVGSMILElement(const QualifiedName& tagName, Document& doc)
|
| : SVGElement(tagName, doc)
|
| , SVGTests(this)
|
| @@ -1291,6 +1296,11 @@ void SVGSMILElement::handleConditionEvent(Event* event, Condition* condition)
|
| addEndTime(elapsed, elapsed + condition->offset());
|
| }
|
|
|
| +SMILTimeContainer* SVGSMILElement::timeContainer() const
|
| +{
|
| + return m_timeContainer.get();
|
| +}
|
| +
|
| void SVGSMILElement::beginByLinkActivation()
|
| {
|
| SMILTime elapsed = this->elapsed();
|
|
|