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

Unified Diff: Source/modules/mediasource/SourceBufferList.cpp

Issue 803663002: Have SourceBufferList trace all its object references. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: need a transition type still Created 6 years 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 | « Source/modules/mediasource/SourceBufferList.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasource/SourceBufferList.cpp
diff --git a/Source/modules/mediasource/SourceBufferList.cpp b/Source/modules/mediasource/SourceBufferList.cpp
index 3b7383be084a410be7795f307c2def72ecd93752..18b22a585d88325ca3649f11672936ba39c92c64 100644
--- a/Source/modules/mediasource/SourceBufferList.cpp
+++ b/Source/modules/mediasource/SourceBufferList.cpp
@@ -31,6 +31,7 @@
#include "config.h"
#include "modules/mediasource/SourceBufferList.h"
+#include "core/dom/ExecutionContext.h"
#include "core/events/GenericEventQueue.h"
#include "modules/EventModules.h"
#include "modules/mediasource/SourceBuffer.h"
@@ -99,6 +100,8 @@ ExecutionContext* SourceBufferList::executionContext() const
void SourceBufferList::trace(Visitor* visitor)
{
+ visitor->trace(m_executionContext);
+ visitor->trace(m_asyncEventQueue);
visitor->trace(m_list);
EventTargetWithInlineData::trace(visitor);
}
« no previous file with comments | « Source/modules/mediasource/SourceBufferList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698