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

Unified Diff: talk/app/webrtc/objc/RTCPeerConnection.mm

Issue 2013523002: Replacing DtlsIdentityStoreInterface with RTCCertificateGeneratorInterface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: The side dish: Update ambigous calls Created 4 years, 7 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/objc/RTCPeerConnection.mm
diff --git a/talk/app/webrtc/objc/RTCPeerConnection.mm b/talk/app/webrtc/objc/RTCPeerConnection.mm
index da092c80269b6c378bdb2aaf6f0a726bf70d7aa8..6ec7edcdc92699255d9e776ea57fd055935c4a54 100644
--- a/talk/app/webrtc/objc/RTCPeerConnection.mm
+++ b/talk/app/webrtc/objc/RTCPeerConnection.mm
@@ -279,7 +279,11 @@ class RTCStatsObserver : public StatsObserver {
config.servers = iceServers;
_observer.reset(new webrtc::RTCPeerConnectionObserver(self));
_peerConnection = factory->CreatePeerConnection(
- config, constraints, nullptr, nullptr, _observer.get());
+ config,
+ constraints,
+ nullptr,
+ std::unique_ptr<rtc::RTCCertificateGeneratorInterface>(),
+ _observer.get());
_localStreams = [[NSMutableArray alloc] init];
}
return self;
@@ -293,7 +297,12 @@ class RTCStatsObserver : public StatsObserver {
if (self = [super init]) {
_observer.reset(new webrtc::RTCPeerConnectionObserver(self));
_peerConnection =
- factory->CreatePeerConnection(config, constraints, nullptr, nullptr, _observer.get());
+ factory->CreatePeerConnection(
+ config,
+ constraints,
+ nullptr,
+ std::unique_ptr<rtc::RTCCertificateGeneratorInterface>(),
+ _observer.get());
_localStreams = [[NSMutableArray alloc] init];
_delegate = delegate;
}
« no previous file with comments | « no previous file | webrtc/api/java/jni/peerconnection_jni.cc » ('j') | webrtc/api/webrtcsessiondescriptionfactory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698