summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/platform/api/quic_pcc_sender.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/platform/api/quic_pcc_sender.h')
-rw-r--r--chromium/net/third_party/quiche/src/quic/platform/api/quic_pcc_sender.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/platform/api/quic_pcc_sender.h b/chromium/net/third_party/quiche/src/quic/platform/api/quic_pcc_sender.h
deleted file mode 100644
index 03db5b3645c..00000000000
--- a/chromium/net/third_party/quiche/src/quic/platform/api/quic_pcc_sender.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2012 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_PLATFORM_API_QUIC_PCC_SENDER_H_
-#define QUICHE_QUIC_PLATFORM_API_QUIC_PCC_SENDER_H_
-
-#include "net/quic/platform/impl/quic_pcc_sender_impl.h"
-
-namespace quic {
-
-class SendAlgorithmInterface;
-// Interface for creating a PCC SendAlgorithmInterface
-inline SendAlgorithmInterface* CreatePccSender(
- const QuicClock* clock,
- const RttStats* rtt_stats,
- const QuicUnackedPacketMap* unacked_packets,
- QuicRandom* random,
- QuicConnectionStats* stats,
- QuicPacketCount initial_congestion_window,
- QuicPacketCount max_congestion_window) {
- return CreatePccSenderImpl(clock, rtt_stats, unacked_packets, random, stats,
- initial_congestion_window, max_congestion_window);
-}
-
-} // namespace quic
-
-#endif // QUICHE_QUIC_PLATFORM_API_QUIC_PCC_SENDER_H_