| Index: webrtc/examples/peerconnection/client/conductor.cc
|
| diff --git a/webrtc/examples/peerconnection/client/conductor.cc b/webrtc/examples/peerconnection/client/conductor.cc
|
| index 8ec6ed9c1026fd34092041b5bea9d2ad87ac01b3..423c35ff83251fdb5e215f3858ff30124d16e83b 100644
|
| --- a/webrtc/examples/peerconnection/client/conductor.cc
|
| +++ b/webrtc/examples/peerconnection/client/conductor.cc
|
| @@ -129,7 +129,11 @@ bool Conductor::CreatePeerConnection(bool dtls) {
|
| }
|
|
|
| peer_connection_ = peer_connection_factory_->CreatePeerConnection(
|
| - config, &constraints, NULL, NULL, this);
|
| + config,
|
| + &constraints,
|
| + nullptr,
|
| + std::unique_ptr<rtc::RTCCertificateGeneratorInterface>(),
|
| + this);
|
| return peer_connection_.get() != NULL;
|
| }
|
|
|
|
|