#ifndef REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
#define REMOTING_TEST_FAKE_PORT_ALLOCATOR_H_
#include <memory>
#include <set>
#include <string_view>
#include "base/memory/scoped_refptr.h"
#include "remoting/protocol/port_allocator_factory.h"
#include "third_party/webrtc/p2p/client/basic_port_allocator.h"
namespace remoting {
class FakeNetworkDispatcher;
class FakePacketSocketFactory;
class FakePortAllocator : public cricket::BasicPortAllocator { … };
class FakePortAllocatorFactory : public protocol::PortAllocatorFactory { … };
}
#endif