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

Unified Diff: webrtc/api/peerconnectioninterface_unittest.cc

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: webrtc/api/peerconnectioninterface_unittest.cc
diff --git a/webrtc/api/peerconnectioninterface_unittest.cc b/webrtc/api/peerconnectioninterface_unittest.cc
index d2f0ad1c56eec69a1e0fb36e540fb5d3236c2df2..8ced9a784153711f5b1ab0e344ed1375984c39c5 100644
--- a/webrtc/api/peerconnectioninterface_unittest.cc
+++ b/webrtc/api/peerconnectioninterface_unittest.cc
@@ -616,8 +616,12 @@ class PeerConnectionInterfaceTest : public testing::Test {
config.servers.push_back(server);
scoped_refptr<PeerConnectionInterface> pc;
- pc = pc_factory_->CreatePeerConnection(config, nullptr, nullptr, nullptr,
- &observer_);
+ pc = pc_factory_->CreatePeerConnection(
+ config,
+ nullptr,
+ nullptr,
+ std::unique_ptr<rtc::RTCCertificateGeneratorInterface>(),
+ &observer_);
EXPECT_EQ(nullptr, pc);
}

Powered by Google App Engine
This is Rietveld 408576698