chromium/services/network/throttling/throttling_p2p_network_interceptor.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef SERVICES_NETWORK_THROTTLING_THROTTLING_P2P_NETWORK_INTERCEPTOR_H_
#define SERVICES_NETWORK_THROTTLING_THROTTLING_P2P_NETWORK_INTERCEPTOR_H_

#include <memory>

#include "base/component_export.h"
#include "base/memory/raw_ptr.h"
#include "base/timer/timer.h"
#include "services/network/p2p/socket_udp.h"
#include "services/network/throttling/network_conditions.h"
#include "third_party/webrtc/call/simulated_network.h"

namespace network {

class P2PSocketUdp;

// ThrottlingP2PNetworkInterceptor emulates network conditions for WebRTC
// communications with specific client id.
class COMPONENT_EXPORT(NETWORK_SERVICE) ThrottlingP2PNetworkInterceptor {};

}  // namespace network

#endif  // SERVICES_NETWORK_THROTTLING_THROTTLING_P2P_NETWORK_INTERCEPTOR_H_