Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(797)

Unified Diff: talk/examples/peerconnection/client/conductor.cc

Issue 1151943005: Ability to specify KeyType (RSA, ECDSA) for SSLIdentity generation in libjingle (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressing ASAN, LSAN issues in unittests Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: talk/examples/peerconnection/client/conductor.cc
diff --git a/talk/examples/peerconnection/client/conductor.cc b/talk/examples/peerconnection/client/conductor.cc
index f30516fc74bb3a6799799412313198bb91fbbfb3..80f5a24612d229d709ece090784eb91f48c56939 100644
--- a/talk/examples/peerconnection/client/conductor.cc
+++ b/talk/examples/peerconnection/client/conductor.cc
@@ -149,9 +149,9 @@ bool Conductor::CreatePeerConnection(bool dtls) {
peer_connection_ =
peer_connection_factory_->CreatePeerConnection(servers,
&constraints,
- NULL,
- NULL,
- this);
+ nullptr,
+ this,
+ nullptr);
return peer_connection_.get() != NULL;
}

Powered by Google App Engine
This is Rietveld 408576698