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

  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBuffer.cpp 37 #include "core/platform/graphics/SourceBufferPrivate.h"
43 PassRefPtr<WebKitSourceBuffer> WebKitSourceBuffer::create(PassOwnPtr<SourceBufferPrivate> sourceBufferPrivate, PassRefPtr<WebKitMediaSource> source)
45 return adoptRef(new WebKitSourceBuffer(sourceBufferPrivate, source));
48 WebKitSourceBuffer::WebKitSourceBuffer(PassOwnPtr<SourceBufferPrivate> sourceBufferPrivate, PassRefPtr<WebKitMediaSource> source)
49 : m_private(sourceBufferPrivate)
WebKitMediaSource.cpp 40 #include "core/platform/graphics/SourceBufferPrivate.h"
99 OwnPtr<SourceBufferPrivate> sourceBufferPrivate = createSourceBufferPrivate(contentType.type(), codecs, es);
100 if (!sourceBufferPrivate)
103 RefPtr<WebKitSourceBuffer> buffer = WebKitSourceBuffer::create(sourceBufferPrivate.release(), this);
MediaSource.cpp 42 #include "core/platform/graphics/SourceBufferPrivate.h"
100 OwnPtr<SourceBufferPrivate> sourceBufferPrivate = createSourceBufferPrivate(contentType.type(), codecs, es);
102 if (!sourceBufferPrivate) {
109 RefPtr<SourceBuffer> buffer = SourceBuffer::create(sourceBufferPrivate.release(), this, asyncEventQueue());
SourceBuffer.cpp 40 #include "core/platform/graphics/SourceBufferPrivate.h"
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)
59 , m_private(sourceBufferPrivate)
MediaSourceBase.cpp 40 #include "core/platform/graphics/SourceBufferPrivate.h"
262 PassOwnPtr<SourceBufferPrivate> MediaSourceBase::createSourceBufferPrivate(const String& type, const MediaSourcePrivate::CodecsArray& codecs, ExceptionState& es)
264 OwnPtr<SourceBufferPrivate> sourceBufferPrivate;
265 switch (m_private->addSourceBuffer(type, codecs, &sourceBufferPrivate)) {
267 return sourceBufferPrivate.release();

Completed in 209 milliseconds