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

Unified Diff: Source/core/html/track/VideoTrack.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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/track/VideoTrack.cpp
diff --git a/Source/core/html/track/VideoTrack.cpp b/Source/core/html/track/VideoTrack.cpp
index 12bb0f28bc70e087562e212bf57edefa8a67c2e2..047c70820783f4c10aa5fc6ea73fd33b25416ba1 100644
--- a/Source/core/html/track/VideoTrack.cpp
+++ b/Source/core/html/track/VideoTrack.cpp
@@ -20,6 +20,11 @@ VideoTrack::~VideoTrack()
{
}
+void VideoTrack::trace(Visitor* visitor)
+{
+ TrackBase::trace(visitor);
+}
+
void VideoTrack::setSelected(bool selected)
{
if (selected == m_selected)

Powered by Google App Engine
This is Rietveld 408576698