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

Unified Diff: webrtc/base/signalthread.cc

Issue 2164333002: Use NullSocketServer instead of PhysicalSocketServer in SignalThread (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Only disable SocketServer for AsyncResolver Created 4 years, 5 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
« webrtc/base/signalthread.h ('K') | « webrtc/base/signalthread.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/signalthread.cc
diff --git a/webrtc/base/signalthread.cc b/webrtc/base/signalthread.cc
index e5dd6946aa6def6d240bd057d288200ef882ac8c..e10bd0b9f12ed9fea84a50b9b980b5626c4d9b83 100644
--- a/webrtc/base/signalthread.cc
+++ b/webrtc/base/signalthread.cc
@@ -18,9 +18,9 @@ namespace rtc {
// SignalThread
///////////////////////////////////////////////////////////////////////////////
-SignalThread::SignalThread()
+SignalThread::SignalThread(bool useSocketServer)
: main_(Thread::Current()),
- worker_(this),
+ worker_(this, useSocketServer),
state_(kInit),
refcount_(1) {
main_->SignalQueueDestroyed.connect(this,
« webrtc/base/signalthread.h ('K') | « webrtc/base/signalthread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698