| Index: webrtc/base/virtualsocket_unittest.cc
|
| diff --git a/webrtc/base/virtualsocket_unittest.cc b/webrtc/base/virtualsocket_unittest.cc
|
| index 488cada386eb5f7743393e1fa26be4d73a2b7d87..54a52d9eae207b8a93501cfb7bc42970dd72ece1 100644
|
| --- a/webrtc/base/virtualsocket_unittest.cc
|
| +++ b/webrtc/base/virtualsocket_unittest.cc
|
| @@ -147,6 +147,7 @@ class VirtualSocketServerTest : public testing::Test {
|
| public:
|
| VirtualSocketServerTest()
|
| : ss_(nullptr),
|
| + thread_(&ss_),
|
| kIPv4AnyAddress(IPAddress(INADDR_ANY), 0),
|
| kIPv6AnyAddress(IPAddress(in6addr_any), 0) {}
|
|
|
| @@ -828,10 +829,8 @@ class VirtualSocketServerTest : public testing::Test {
|
| }
|
|
|
| protected:
|
| - virtual void SetUp() { Thread::Current()->set_socketserver(&ss_); }
|
| - virtual void TearDown() { Thread::Current()->set_socketserver(nullptr); }
|
| -
|
| VirtualSocketServer ss_;
|
| + AutoSocketServerThread thread_;
|
| const SocketAddress kIPv4AnyAddress;
|
| const SocketAddress kIPv6AnyAddress;
|
| };
|
|
|