| Index: webrtc/p2p/client/basicportallocator_unittest.cc
|
| diff --git a/webrtc/p2p/client/basicportallocator_unittest.cc b/webrtc/p2p/client/basicportallocator_unittest.cc
|
| index bb3e0d71a3228738efcbc863cabbee8d5997e170..bf288c9e6801a49fa0f30bc290d08b549a7b820d 100644
|
| --- a/webrtc/p2p/client/basicportallocator_unittest.cc
|
| +++ b/webrtc/p2p/client/basicportallocator_unittest.cc
|
| @@ -22,7 +22,6 @@
|
| #include "webrtc/base/natsocketfactory.h"
|
| #include "webrtc/base/nethelpers.h"
|
| #include "webrtc/base/network.h"
|
| -#include "webrtc/base/physicalsocketserver.h"
|
| #include "webrtc/base/socketaddress.h"
|
| #include "webrtc/base/ssladapter.h"
|
| #include "webrtc/base/thread.h"
|
| @@ -117,8 +116,7 @@ class BasicPortAllocatorTestBase : public testing::Test,
|
| public sigslot::has_slots<> {
|
| public:
|
| BasicPortAllocatorTestBase()
|
| - : pss_(new rtc::PhysicalSocketServer),
|
| - vss_(new rtc::VirtualSocketServer(pss_.get())),
|
| + : vss_(new rtc::VirtualSocketServer()),
|
| fss_(new rtc::FirewallSocketServer(vss_.get())),
|
| thread_(fss_.get()),
|
| // Note that the NAT is not used by default. ResetWithStunServerAndNat
|
| @@ -465,7 +463,6 @@ class BasicPortAllocatorTestBase : public testing::Test,
|
| allocator().set_step_delay(kMinimumStepDelay);
|
| }
|
|
|
| - std::unique_ptr<rtc::PhysicalSocketServer> pss_;
|
| std::unique_ptr<rtc::VirtualSocketServer> vss_;
|
| std::unique_ptr<rtc::FirewallSocketServer> fss_;
|
| rtc::AutoSocketServerThread thread_;
|
|
|