Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(362)

Unified Diff: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698