Searched defs:videoSources (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DMediaStreamAudioDestinationNode.cpp52 MediaStreamSourceVector videoSources; local
53 m_stream = MediaStream::create(context->executionContext(), MediaStreamDescriptor::create(audioSources, videoSources));
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamDescriptor.cpp40 PassRefPtr<MediaStreamDescriptor> MediaStreamDescriptor::create(const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources) argument
42 return adoptRef(new MediaStreamDescriptor(createCanonicalUUIDString(), audioSources, videoSources));
102 MediaStreamDescriptor::MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources) argument
111 for (size_t i = 0; i < videoSources.size(); i++)
112 m_videoComponents.append(MediaStreamComponent::create(videoSources[i]));

Completed in 93 milliseconds