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

Unified Diff: webrtc/base/nethelpers.cc

Issue 2164333002: Use NullSocketServer instead of PhysicalSocketServer in SignalThread (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: useSocketServer -> use_socket_server 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
« no previous file with comments | « no previous file | webrtc/base/signalthread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/nethelpers.cc
diff --git a/webrtc/base/nethelpers.cc b/webrtc/base/nethelpers.cc
index 1f6bb8df7b7f71628524df9bd1fa27240ab9fe7b..4bcf5b60e6988af6d58d658d1c06b98141232625 100644
--- a/webrtc/base/nethelpers.cc
+++ b/webrtc/base/nethelpers.cc
@@ -82,8 +82,8 @@ int ResolveHostname(const std::string& hostname, int family,
}
// AsyncResolver
-AsyncResolver::AsyncResolver() : error_(-1) {
-}
+AsyncResolver::AsyncResolver()
+ : SignalThread(false /* use_socket_server */), error_(-1) {}
AsyncResolver::~AsyncResolver() = default;
« no previous file with comments | « no previous file | webrtc/base/signalthread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698