| Index: content/renderer/media/media_stream_dependency_factory.cc
|
| diff --git a/content/renderer/media/media_stream_dependency_factory.cc b/content/renderer/media/media_stream_dependency_factory.cc
|
| index 402a50f78cf0f6f68178605a9811326ad11ac623..70f5093b65c489c7284e6711200f0e748ffd29e0 100644
|
| --- a/content/renderer/media/media_stream_dependency_factory.cc
|
| +++ b/content/renderer/media/media_stream_dependency_factory.cc
|
| @@ -113,6 +113,14 @@ MediaStreamDependencyFactory::CreatePeerConnection(
|
| return pc_factory_->CreatePeerConnection(config, observer);
|
| }
|
|
|
| +talk_base::scoped_refptr<webrtc::PeerConnectionInterface>
|
| +MediaStreamDependencyFactory::CreatePeerConnection(
|
| + const webrtc::JsepInterface::IceServers& ice_servers,
|
| + const webrtc::MediaConstraintsInterface* constraints,
|
| + webrtc::PeerConnectionObserver* observer) {
|
| + return pc_factory_->CreatePeerConnection(ice_servers, constraints, observer);
|
| +}
|
| +
|
| talk_base::scoped_refptr<webrtc::LocalMediaStreamInterface>
|
| MediaStreamDependencyFactory::CreateLocalMediaStream(
|
| const std::string& label) {
|
| @@ -144,6 +152,11 @@ MediaStreamDependencyFactory::CreateSessionDescription(const std::string& sdp) {
|
| return webrtc::CreateSessionDescription(sdp);
|
| }
|
|
|
| +webrtc::SessionDescriptionInterface*
|
| +MediaStreamDependencyFactory::CreateSessionDescription(const std::string& type,
|
| + const std::string& sdp) {
|
| + return webrtc::CreateSessionDescription(type, sdp);
|
| +}
|
| webrtc::IceCandidateInterface* MediaStreamDependencyFactory::CreateIceCandidate(
|
| const std::string& sdp_mid,
|
| int sdp_mline_index,
|
|
|