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

Unified Diff: webrtc/api/peerconnectionfactory_unittest.cc

Issue 1968393002: Propogate network-worker thread split to api (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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/peerconnectionfactory_unittest.cc
diff --git a/webrtc/api/peerconnectionfactory_unittest.cc b/webrtc/api/peerconnectionfactory_unittest.cc
index 833242a240ea6d725196bc39d7efdc3466eef825..e5afd95eace9589286f22be58656154f40d07159 100644
--- a/webrtc/api/peerconnectionfactory_unittest.cc
+++ b/webrtc/api/peerconnectionfactory_unittest.cc
@@ -87,11 +87,9 @@ class PeerConnectionFactoryTest : public testing::Test {
#ifdef WEBRTC_ANDROID
webrtc::InitializeAndroidObjects();
#endif
- factory_ = webrtc::CreatePeerConnectionFactory(rtc::Thread::Current(),
- rtc::Thread::Current(),
- NULL,
- NULL,
- NULL);
+ factory_ = webrtc::CreatePeerConnectionFactory(
+ rtc::Thread::Current(), rtc::Thread::Current(), rtc::Thread::Current(),
+ nullptr, nullptr, nullptr);
ASSERT_TRUE(factory_.get() != NULL);
port_allocator_.reset(

Powered by Google App Engine
This is Rietveld 408576698