Chromium Code Reviews

Unified Diff: Source/core/html/track/AudioTrack.cpp

Issue 835363003: Oilpan: add missing leftmost trace()s for GC mixins. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/html/track/AudioTrack.cpp
diff --git a/Source/core/html/track/AudioTrack.cpp b/Source/core/html/track/AudioTrack.cpp
index 136bab48ccf5414e63eb48bd0cc974c322ccdf0e..0b746da527271bc8b34bc997373ecdc0ea8357a5 100644
--- a/Source/core/html/track/AudioTrack.cpp
+++ b/Source/core/html/track/AudioTrack.cpp
@@ -20,6 +20,11 @@ AudioTrack::~AudioTrack()
{
}
+void AudioTrack::trace(Visitor* visitor)
+{
+ TrackBase::trace(visitor);
+}
+
void AudioTrack::setEnabled(bool enabled)
{
if (enabled == m_enabled)

Powered by Google App Engine