chromium/net/third_party/quiche/src/quiche/quic/core/congestion_control/uber_loss_algorithm.h

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

#ifndef QUICHE_QUIC_CORE_CONGESTION_CONTROL_UBER_LOSS_ALGORITHM_H_
#define QUICHE_QUIC_CORE_CONGESTION_CONTROL_UBER_LOSS_ALGORITHM_H_

#include <optional>

#include "quiche/quic/core/congestion_control/general_loss_algorithm.h"
#include "quiche/quic/core/quic_types.h"
#include "quiche/quic/platform/api/quic_flags.h"

namespace quic {

namespace test {

class QuicSentPacketManagerPeer;

}  // namespace test

struct QUICHE_EXPORT LossDetectionParameters {};

class QUICHE_EXPORT LossDetectionTunerInterface {};

// This class comprises multiple loss algorithms, each per packet number space.
class QUICHE_EXPORT UberLossAlgorithm : public LossDetectionInterface {};

}  // namespace quic

#endif  // QUICHE_QUIC_CORE_CONGESTION_CONTROL_UBER_LOSS_ALGORITHM_H_