Chromium Code Reviews| Index: talk/app/webrtc/peerconnection.cc |
| diff --git a/talk/app/webrtc/peerconnection.cc b/talk/app/webrtc/peerconnection.cc |
| index dba77da219df45c8c47709ceed5c7cc71a805d94..7d8cf165d5a79c0fcbcf90c16f6094c11167e3c1 100644 |
| --- a/talk/app/webrtc/peerconnection.cc |
| +++ b/talk/app/webrtc/peerconnection.cc |
| @@ -349,7 +349,7 @@ bool PeerConnection::Initialize( |
| const PeerConnectionInterface::RTCConfiguration& configuration, |
| const MediaConstraintsInterface* constraints, |
| PortAllocatorFactoryInterface* allocator_factory, |
| - DTLSIdentityServiceInterface* dtls_identity_service, |
| + rtc::scoped_refptr<webrtc::DtlsCertificate> certificate, |
|
hbos
2015/08/04 12:50:21
Already in webrtc namespace, I shall remove "webrt
|
| PeerConnectionObserver* observer) { |
| ASSERT(observer != NULL); |
| if (!observer) |
| @@ -405,7 +405,7 @@ bool PeerConnection::Initialize( |
| // Initialize the WebRtcSession. It creates transport channels etc. |
| if (!session_->Initialize(factory_->options(), constraints, |
| - dtls_identity_service, configuration)) |
| + certificate, configuration)) |
| return false; |
| // Register PeerConnection as receiver of local ice candidates. |