#ifndef REMOTING_PROTOCOL_PORT_ALLOCATOR_H_
#define REMOTING_PROTOCOL_PORT_ALLOCATOR_H_
#include <string>
#include <string_view>
#include <vector>
#include "base/memory/weak_ptr.h"
#include "remoting/protocol/ice_config.h"
#include "remoting/protocol/network_settings.h"
#include "remoting/protocol/transport_context.h"
#include "third_party/webrtc/p2p/client/basic_port_allocator.h"
namespace remoting::protocol {
class PortAllocator : public cricket::BasicPortAllocator { … };
class PortAllocatorSession : public cricket::BasicPortAllocatorSession { … };
}
#endif