// Copyright (c) 2014 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. #include "quiche/quic/core/congestion_control/prr_sender.h" #include "quiche/quic/core/quic_packets.h" namespace quic { PrrSender::PrrSender() : … { … } void PrrSender::OnPacketSent(QuicByteCount sent_bytes) { … } void PrrSender::OnPacketLost(QuicByteCount prior_in_flight) { … } void PrrSender::OnPacketAcked(QuicByteCount acked_bytes) { … } bool PrrSender::CanSend(QuicByteCount congestion_window, QuicByteCount bytes_in_flight, QuicByteCount slowstart_threshold) const { … } } // namespace quic