| Index: webrtc/api/peerconnectionfactoryproxy.h
|
| diff --git a/webrtc/api/peerconnectionfactoryproxy.h b/webrtc/api/peerconnectionfactoryproxy.h
|
| index c357de9b32b17697e1f28bd7e3735f04f3ae3d34..f0dea4225882d92b1db7d3277c3e90ea31bf4ffd 100644
|
| --- a/webrtc/api/peerconnectionfactoryproxy.h
|
| +++ b/webrtc/api/peerconnectionfactoryproxy.h
|
| @@ -29,7 +29,7 @@ BEGIN_SIGNALING_PROXY_MAP(PeerConnectionFactory)
|
| const PeerConnectionInterface::RTCConfiguration& a1,
|
| const MediaConstraintsInterface* a2,
|
| std::unique_ptr<cricket::PortAllocator> a3,
|
| - std::unique_ptr<DtlsIdentityStoreInterface> a4,
|
| + std::unique_ptr<rtc::RTCCertificateGeneratorInterface> a4,
|
| PeerConnectionObserver* a5) override {
|
| return signaling_thread_
|
| ->Invoke<rtc::scoped_refptr<PeerConnectionInterface>>(
|
| @@ -39,7 +39,7 @@ BEGIN_SIGNALING_PROXY_MAP(PeerConnectionFactory)
|
| rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection(
|
| const PeerConnectionInterface::RTCConfiguration& a1,
|
| std::unique_ptr<cricket::PortAllocator> a3,
|
| - std::unique_ptr<DtlsIdentityStoreInterface> a4,
|
| + std::unique_ptr<rtc::RTCCertificateGeneratorInterface> a4,
|
| PeerConnectionObserver* a5) override {
|
| return signaling_thread_
|
| ->Invoke<rtc::scoped_refptr<PeerConnectionInterface>>(
|
| @@ -77,10 +77,10 @@ BEGIN_SIGNALING_PROXY_MAP(PeerConnectionFactory)
|
| const PeerConnectionInterface::RTCConfiguration& a1,
|
| const MediaConstraintsInterface* a2,
|
| cricket::PortAllocator* a3,
|
| - DtlsIdentityStoreInterface* a4,
|
| + rtc::RTCCertificateGeneratorInterface* a4,
|
| PeerConnectionObserver* a5) {
|
| std::unique_ptr<cricket::PortAllocator> ptr_a3(a3);
|
| - std::unique_ptr<DtlsIdentityStoreInterface> ptr_a4(a4);
|
| + std::unique_ptr<rtc::RTCCertificateGeneratorInterface> ptr_a4(a4);
|
| return c_->CreatePeerConnection(a1, a2, std::move(ptr_a3),
|
| std::move(ptr_a4), a5);
|
| }
|
| @@ -88,10 +88,10 @@ BEGIN_SIGNALING_PROXY_MAP(PeerConnectionFactory)
|
| rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection_ot(
|
| const PeerConnectionInterface::RTCConfiguration& a1,
|
| cricket::PortAllocator* a3,
|
| - DtlsIdentityStoreInterface* a4,
|
| + rtc::RTCCertificateGeneratorInterface* a4,
|
| PeerConnectionObserver* a5) {
|
| std::unique_ptr<cricket::PortAllocator> ptr_a3(a3);
|
| - std::unique_ptr<DtlsIdentityStoreInterface> ptr_a4(a4);
|
| + std::unique_ptr<rtc::RTCCertificateGeneratorInterface> ptr_a4(a4);
|
| return c_->CreatePeerConnection(a1, std::move(ptr_a3), std::move(ptr_a4),
|
| a5);
|
| }
|
|
|