Index: webrtc/api/peerconnectionfactory.h |
diff --git a/webrtc/api/peerconnectionfactory.h b/webrtc/api/peerconnectionfactory.h |
index 3ba4124096e4300f79593460f70d67b8af48eb03..49ae29bde18a191803d8cf9fefc6e40b17cd0f67 100644 |
--- a/webrtc/api/peerconnectionfactory.h |
+++ b/webrtc/api/peerconnectionfactory.h |
@@ -45,6 +45,12 @@ class PeerConnectionFactory : public PeerConnectionFactoryInterface { |
rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, |
PeerConnectionObserver* observer) override; |
+ virtual rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection( |
+ const PeerConnectionInterface::RTCConfiguration& configuration, |
+ rtc::scoped_ptr<cricket::PortAllocator> allocator, |
+ rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store, |
+ PeerConnectionObserver* observer) override; |
+ |
bool Initialize(); |
rtc::scoped_refptr<MediaStreamInterface> |
@@ -52,10 +58,14 @@ class PeerConnectionFactory : public PeerConnectionFactoryInterface { |
rtc::scoped_refptr<AudioSourceInterface> CreateAudioSource( |
const MediaConstraintsInterface* constraints) override; |
+ virtual rtc::scoped_refptr<AudioSourceInterface> CreateAudioSource( |
+ const cricket::AudioOptions& options) override; |
rtc::scoped_refptr<VideoSourceInterface> CreateVideoSource( |
cricket::VideoCapturer* capturer, |
const MediaConstraintsInterface* constraints) override; |
+ virtual rtc::scoped_refptr<VideoSourceInterface> CreateVideoSource( |
+ cricket::VideoCapturer* capturer) override; |
rtc::scoped_refptr<VideoTrackInterface> |
CreateVideoTrack(const std::string& id, |