// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/p2p/port_allocator.h" #include <stdint.h> #include <memory> #include <utility> #include "base/check.h" #include "third_party/blink/public/platform/platform.h" namespace blink { P2PPortAllocator::P2PPortAllocator( std::unique_ptr<rtc::NetworkManager> network_manager, rtc::PacketSocketFactory* socket_factory, const Config& config) : … { … } P2PPortAllocator::~P2PPortAllocator() { … } void P2PPortAllocator::Initialize() { … } } // namespace blink