Index: talk/app/webrtc/peerconnection_unittest.cc |
diff --git a/talk/app/webrtc/peerconnection_unittest.cc b/talk/app/webrtc/peerconnection_unittest.cc |
index fd58ecdff6f46238c3b5aa8cbd0e9b6b6c6fad65..08e6cef1c6731939ac530ad018aae75c4e3e3843 100644 |
--- a/talk/app/webrtc/peerconnection_unittest.cc |
+++ b/talk/app/webrtc/peerconnection_unittest.cc |
@@ -41,7 +41,7 @@ |
#include "talk/app/webrtc/peerconnectioninterface.h" |
#include "talk/app/webrtc/test/fakeaudiocapturemodule.h" |
#include "talk/app/webrtc/test/fakeconstraints.h" |
-#include "talk/app/webrtc/test/fakedtlsidentityservice.h" |
+#include "talk/app/webrtc/test/fakedtlsidentitystore.h" |
#include "talk/app/webrtc/test/fakeperiodicvideocapturer.h" |
#include "talk/app/webrtc/test/fakevideotrackrenderer.h" |
#include "talk/app/webrtc/test/mockpeerconnectionobservers.h" |
@@ -780,20 +780,21 @@ class JsepTestClient |
remove_sdes_(false) { |
} |
- virtual rtc::scoped_refptr<webrtc::PeerConnectionInterface> |
- CreatePeerConnection(webrtc::PortAllocatorFactoryInterface* factory, |
- const MediaConstraintsInterface* constraints) { |
+ rtc::scoped_refptr<webrtc::PeerConnectionInterface> |
+ CreatePeerConnection( |
+ webrtc::PortAllocatorFactoryInterface* factory, |
+ const MediaConstraintsInterface* constraints) override { |
// CreatePeerConnection with IceServers. |
webrtc::PeerConnectionInterface::IceServers ice_servers; |
webrtc::PeerConnectionInterface::IceServer ice_server; |
ice_server.uri = "stun:stun.l.google.com:19302"; |
ice_servers.push_back(ice_server); |
- FakeIdentityService* dtls_service = |
- rtc::SSLStreamAdapter::HaveDtlsSrtp() ? |
- new FakeIdentityService() : NULL; |
+ rtc::scoped_ptr<webrtc::DtlsIdentityStoreInterface> dtls_identity_store( |
+ rtc::SSLStreamAdapter::HaveDtlsSrtp() ? new FakeDtlsIdentityStore() |
+ : nullptr); |
return peer_connection_factory()->CreatePeerConnection( |
- ice_servers, constraints, factory, dtls_service, this); |
+ ice_servers, constraints, factory, dtls_identity_store.Pass(), this); |
} |
void HandleIncomingOffer(const std::string& msg) { |