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

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

Issue 789833002: Oilpan: fix handling of SourceBuffer's async event queue. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/SourceBuffer.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/SourceBuffer.cpp
diff --git a/Source/modules/mediasource/SourceBuffer.cpp b/Source/modules/mediasource/SourceBuffer.cpp
index ec9727e5d46cc6943af3caa095d8e6a7fbf6c6a7..e44acdd05d626cece4f1c5cec1854f1354e93d36 100644
--- a/Source/modules/mediasource/SourceBuffer.cpp
+++ b/Source/modules/mediasource/SourceBuffer.cpp
@@ -419,7 +419,7 @@ void SourceBuffer::removedFromMediaSource()
m_webSourceBuffer->removedFromMediaSource();
m_webSourceBuffer.clear();
m_source = nullptr;
- m_asyncEventQueue = 0;
+ m_asyncEventQueue = nullptr;
}
void SourceBuffer::initializationSegmentReceived()
@@ -746,6 +746,7 @@ void SourceBuffer::trace(Visitor* visitor)
{
visitor->trace(m_source);
visitor->trace(m_stream);
+ visitor->trace(m_asyncEventQueue);
EventTargetWithInlineData::trace(visitor);
}
« no previous file with comments | « Source/modules/mediasource/SourceBuffer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698