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

Unified Diff: content/renderer/media/media_stream_dependency_factory.h

Issue 131763002: Adds MediaStreamSource, MediaStreamAudioSource and MediaStreamVideoCaptureDeviceSource (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments from xians. Created 6 years, 11 months 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
Index: content/renderer/media/media_stream_dependency_factory.h
diff --git a/content/renderer/media/media_stream_dependency_factory.h b/content/renderer/media/media_stream_dependency_factory.h
index 13bfa3f032f346b71f53b34fa20767f634ba5e92..ece81e62fa1f0d777ad30bc71fb719d6b1719f31 100644
--- a/content/renderer/media/media_stream_dependency_factory.h
+++ b/content/renderer/media/media_stream_dependency_factory.h
@@ -70,19 +70,18 @@ class CONTENT_EXPORT MediaStreamDependencyFactory
blink::WebRTCPeerConnectionHandler* CreateRTCPeerConnectionHandler(
blink::WebRTCPeerConnectionHandlerClient* client);
- // CreateNativeMediaSources creates libjingle representations of
- // the underlying sources to the tracks in |web_stream|.
- // |sources_created| is invoked when the sources have either been created and
- // transitioned to a live state or failed.
- // The libjingle sources is stored in the extra data field of
- // WebMediaStreamSource.
- // |audio_constraints| and |video_constraints| set parameters for the sources.
- void CreateNativeMediaSources(
+ // InitializeMediaStreamAudioSource initialize a MediaStream source object
+ // for audio input.
+ // The source is stored in the extra data field of WebMediaStreamSource.
+ bool InitializeMediaStreamAudioSource(
int render_view_id,
const blink::WebMediaConstraints& audio_constraints,
- const blink::WebMediaConstraints& video_constraints,
- blink::WebMediaStream* web_stream,
- const MediaSourcesCreatedCallback& sources_created);
+ const blink::WebMediaStreamSource& audio_source);
+
+ // Creates an implementation of a cricket::VideoCapturer object that can be
+ // used when creating a libjingle webrtc::VideoSourceInterface object.
+ virtual cricket::VideoCapturer* CreateVideoCapturer(
+ const StreamDeviceInfo& info);
// Creates a libjingle representation of a MediaStream and stores
// it in the extra data field of |web_stream|.
@@ -168,13 +167,6 @@ class CONTENT_EXPORT MediaStreamDependencyFactory
CreateLocalAudioSource(
const webrtc::MediaConstraintsInterface* constraints);
- // Asks the PeerConnection factory to create a Local Video Source.
- virtual scoped_refptr<webrtc::VideoSourceInterface>
- CreateLocalVideoSource(
- int video_session_id,
- bool is_screen_cast,
- const webrtc::MediaConstraintsInterface* constraints);
-
// Creates a media::AudioCapturerSource with an implementation that is
// specific for a WebAudio source. The created WebAudioCapturerSource
// instance will function as audio source instead of the default

Powered by Google App Engine
This is Rietveld 408576698