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

Unified Diff: talk/app/webrtc/webrtcsession.h

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/app/webrtc/webrtcsession.h
diff --git a/talk/app/webrtc/webrtcsession.h b/talk/app/webrtc/webrtcsession.h
index 570d32f03f6c822d72e4b08a5bead9981f69f7b2..a25c121d69177622e8992009dfe28f1e088993a9 100644
--- a/talk/app/webrtc/webrtcsession.h
+++ b/talk/app/webrtc/webrtcsession.h
@@ -39,6 +39,7 @@
#include "webrtc/p2p/base/session.h"
#include "talk/session/media/mediasession.h"
#include "webrtc/base/sigslot.h"
+#include "webrtc/base/sslidentity.h"
#include "webrtc/base/thread.h"
namespace cricket {
@@ -120,8 +121,9 @@ class WebRtcSession : public cricket::BaseSession,
bool Initialize(
const PeerConnectionFactoryInterface::Options& options,
const MediaConstraintsInterface* constraints,
- DTLSIdentityServiceInterface* dtls_identity_service,
- const PeerConnectionInterface::RTCConfiguration& rtc_configuration);
+ const PeerConnectionInterface::RTCConfiguration& rtc_configuration,
+ DtlsIdentityStoreInterface* dtls_identity_store,
+ rtc::KeyType key_type);
// Deletes the voice, video and data channel and changes the session state
// to STATE_RECEIVEDTERMINATE.
void Terminate();

Powered by Google App Engine
This is Rietveld 408576698