| Index: webrtc/api/peerconnectioninterface.h
|
| diff --git a/webrtc/api/peerconnectioninterface.h b/webrtc/api/peerconnectioninterface.h
|
| index 3a1b8dd9889548cd0a6f4ba0ff32f63ef33201cd..5ff8019a0418a2072f72468159eeef3f3a8db873 100644
|
| --- a/webrtc/api/peerconnectioninterface.h
|
| +++ b/webrtc/api/peerconnectioninterface.h
|
| @@ -603,46 +603,12 @@ class PeerConnectionFactoryInterface : public rtc::RefCountInterface {
|
| std::unique_ptr<cricket::PortAllocator> allocator,
|
| std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
|
| PeerConnectionObserver* observer) = 0;
|
| - // TODO(hbos): To be removed in favor of the |cert_generator| version as soon
|
| - // as unittests stop using this version. See bugs.webrtc.org/5707,
|
| - // bugs.webrtc.org/5708.
|
| - rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnectionWithStore(
|
| - const PeerConnectionInterface::RTCConfiguration& configuration,
|
| - const MediaConstraintsInterface* constraints,
|
| - std::unique_ptr<cricket::PortAllocator> allocator,
|
| - std::unique_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
| - PeerConnectionObserver* observer) {
|
| - return CreatePeerConnection(
|
| - configuration,
|
| - constraints,
|
| - std::move(allocator),
|
| - std::unique_ptr<rtc::RTCCertificateGeneratorInterface>(
|
| - dtls_identity_store ? new RTCCertificateGeneratorStoreWrapper(
|
| - std::move(dtls_identity_store)) : nullptr),
|
| - observer);
|
| - }
|
|
|
| virtual rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection(
|
| const PeerConnectionInterface::RTCConfiguration& configuration,
|
| std::unique_ptr<cricket::PortAllocator> allocator,
|
| std::unique_ptr<rtc::RTCCertificateGeneratorInterface> cert_generator,
|
| PeerConnectionObserver* observer) = 0;
|
| - // TODO(hbos): To be removed in favor of the |cert_generator| version as soon
|
| - // as unittests stop using this version. See bugs.webrtc.org/5707,
|
| - // bugs.webrtc.org/5708.
|
| - rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnectionWithStore(
|
| - const PeerConnectionInterface::RTCConfiguration& configuration,
|
| - std::unique_ptr<cricket::PortAllocator> allocator,
|
| - std::unique_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
|
| - PeerConnectionObserver* observer) {
|
| - return CreatePeerConnection(
|
| - configuration,
|
| - std::move(allocator),
|
| - std::unique_ptr<rtc::RTCCertificateGeneratorInterface>(
|
| - dtls_identity_store ? new RTCCertificateGeneratorStoreWrapper(
|
| - std::move(dtls_identity_store)) : nullptr),
|
| - observer);
|
| - }
|
|
|
| virtual rtc::scoped_refptr<MediaStreamInterface>
|
| CreateLocalMediaStream(const std::string& label) = 0;
|
|
|