#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_P2P_EMPTY_NETWORK_MANAGER_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_P2P_EMPTY_NETWORK_MANAGER_H_
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/webrtc/rtc_base/network.h"
#include "third_party/webrtc/rtc_base/third_party/sigslot/sigslot.h"
namespace rtc {
class IPAddress;
}
namespace blink {
class FilteringNetworkManagerTest;
class IpcNetworkManager;
class EmptyNetworkManager : public rtc::NetworkManagerBase,
public sigslot::has_slots<> { … };
}
#endif