HomeSort by relevance Sort by last modified time
    Searched refs:asyncEventQueue (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBufferList.h 46 static PassRefPtr<WebKitSourceBufferList> create(ScriptExecutionContext* context, GenericEventQueue* asyncEventQueue)
48 return adoptRef(new WebKitSourceBufferList(context, asyncEventQueue));
SourceBufferList.cpp 40 SourceBufferList::SourceBufferList(ScriptExecutionContext* context, GenericEventQueue* asyncEventQueue)
42 , m_asyncEventQueue(asyncEventQueue)
SourceBufferList.h 46 static PassRefPtr<SourceBufferList> create(ScriptExecutionContext* context, GenericEventQueue* asyncEventQueue)
48 return adoptRef(new SourceBufferList(context, asyncEventQueue));
WebKitSourceBufferList.cpp 40 WebKitSourceBufferList::WebKitSourceBufferList(ScriptExecutionContext* context, GenericEventQueue* asyncEventQueue)
42 , m_asyncEventQueue(asyncEventQueue)
MediaSource.cpp 61 m_sourceBuffers = SourceBufferList::create(scriptExecutionContext(), asyncEventQueue());
62 m_activeSourceBuffers = SourceBufferList::create(scriptExecutionContext(), asyncEventQueue());
109 RefPtr<SourceBuffer> buffer = SourceBuffer::create(sourceBufferPrivate.release(), this, asyncEventQueue());
WebKitMediaSource.cpp 57 m_sourceBuffers = WebKitSourceBufferList::create(scriptExecutionContext(), asyncEventQueue());
58 m_activeSourceBuffers = WebKitSourceBufferList::create(scriptExecutionContext(), asyncEventQueue());
MediaSourceBase.h 102 GenericEventQueue* asyncEventQueue() const { return m_asyncEventQueue.get(); }
SourceBuffer.cpp 50 PassRefPtr<SourceBuffer> SourceBuffer::create(PassOwnPtr<SourceBufferPrivate> sourceBufferPrivate, MediaSource* source, GenericEventQueue* asyncEventQueue)
52 RefPtr<SourceBuffer> sourceBuffer(adoptRef(new SourceBuffer(sourceBufferPrivate, source, asyncEventQueue)));
57 SourceBuffer::SourceBuffer(PassOwnPtr<SourceBufferPrivate> sourceBufferPrivate, MediaSource* source, GenericEventQueue* asyncEventQueue)
61 , m_asyncEventQueue(asyncEventQueue)

Completed in 130 milliseconds