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

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

Issue 219283007: Oilpan: have RepeatEvent::trace() delegate to Event::trace() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/animation/SVGSMILElement.cpp
diff --git a/Source/core/svg/animation/SVGSMILElement.cpp b/Source/core/svg/animation/SVGSMILElement.cpp
index 6a54acaa0c174d381fc9e3d1a2deb1870a8803db..ab16767cadf1ac3a56fbf8021e7717d6b22f5c72 100644
--- a/Source/core/svg/animation/SVGSMILElement.cpp
+++ b/Source/core/svg/animation/SVGSMILElement.cpp
@@ -58,7 +58,10 @@ public:
int repeat() const { return m_repeat; }
- virtual void trace(Visitor* visitor) { }
+ virtual void trace(Visitor* visitor) OVERRIDE
+ {
+ Event::trace(visitor);
+ }
protected:
RepeatEvent(const AtomicString& type, bool canBubble, bool cancelable, int repeat = -1)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698