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

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

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 | « no previous file | Source/modules/mediasource/SourceBufferList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasource/SourceBufferList.h
diff --git a/Source/modules/mediasource/SourceBufferList.h b/Source/modules/mediasource/SourceBufferList.h
index 64a5f6f7073acc4bb090aabedce7d8c38be6deaf..5c00b3ff2df7c59e6a7ddc47cf07ad45f9f4280d 100644
--- a/Source/modules/mediasource/SourceBufferList.h
+++ b/Source/modules/mediasource/SourceBufferList.h
@@ -33,7 +33,6 @@
#include "modules/EventTargetModules.h"
#include "platform/heap/Handle.h"
-#include "wtf/Vector.h"
namespace blink {
@@ -72,10 +71,10 @@ private:
void scheduleEvent(const AtomicString&);
- ExecutionContext* m_executionContext;
- GenericEventQueue* m_asyncEventQueue;
+ RawPtrWillBeMember<ExecutionContext> m_executionContext;
+ RawPtrWillBeMember<GenericEventQueue> m_asyncEventQueue;
- HeapVector<Member<SourceBuffer> > m_list;
+ HeapVector<Member<SourceBuffer>> m_list;
};
} // namespace blink
« no previous file with comments | « no previous file | Source/modules/mediasource/SourceBufferList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698