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

Unified Diff: third_party/WebKit/Source/core/html/track/TrackListBase.h

Issue 1973863003: Implement SetWrapperReferenceFrom idl attribute within traceWrappers for media tracks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary tracing Created 4 years, 7 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 | « third_party/WebKit/Source/core/html/track/TextTrackList.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/track/TrackListBase.h
diff --git a/third_party/WebKit/Source/core/html/track/TrackListBase.h b/third_party/WebKit/Source/core/html/track/TrackListBase.h
index d849da628d3e826233647210bf99bb8e375ef4e3..9501b826bfd9db27659ddddb971188c25ba44b2a 100644
--- a/third_party/WebKit/Source/core/html/track/TrackListBase.h
+++ b/third_party/WebKit/Source/core/html/track/TrackListBase.h
@@ -100,6 +100,13 @@ public:
EventTargetWithInlineData::trace(visitor);
}
+ DECLARE_VIRTUAL_TRACE_WRAPPERS()
+ {
+ for (auto track : m_tracks) {
+ visitor->traceWrappers(track);
+ }
+ }
+
private:
void scheduleTrackEvent(const AtomicString& eventName, T* track)
{
« no previous file with comments | « third_party/WebKit/Source/core/html/track/TextTrackList.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698