Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1211)

Unified Diff: net/quic/congestion_control/fix_rate_receiver.h

Issue 420313005: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0723
Patch Set: change QUIC packet size to 1350 Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/congestion_control/fix_rate_receiver.h
diff --git a/net/quic/congestion_control/fix_rate_receiver.h b/net/quic/congestion_control/fix_rate_receiver.h
deleted file mode 100644
index 4ed24b993d4379091035963bd56e5fb3f75b9ae7..0000000000000000000000000000000000000000
--- a/net/quic/congestion_control/fix_rate_receiver.h
+++ /dev/null
@@ -1,43 +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.
-//
-// Fix rate receive side congestion control, used for initial testing.
-
-#ifndef NET_QUIC_CONGESTION_CONTROL_FIX_RATE_RECEIVER_H_
-#define NET_QUIC_CONGESTION_CONTROL_FIX_RATE_RECEIVER_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "net/base/net_export.h"
-#include "net/quic/congestion_control/receive_algorithm_interface.h"
-#include "net/quic/quic_bandwidth.h"
-
-namespace net {
-
-namespace test {
-class FixRateReceiverPeer;
-} // namespace test
-
-class NET_EXPORT_PRIVATE FixRateReceiver : public ReceiveAlgorithmInterface {
- public:
- FixRateReceiver();
-
- // Implements ReceiveAlgorithmInterface.
- virtual bool GenerateCongestionFeedback(
- QuicCongestionFeedbackFrame* feedback) OVERRIDE;
-
- // Implements ReceiveAlgorithmInterface.
- virtual void RecordIncomingPacket(QuicByteCount bytes,
- QuicPacketSequenceNumber sequence_number,
- QuicTime timestamp) OVERRIDE;
- private:
- friend class test::FixRateReceiverPeer;
-
- QuicBandwidth configured_rate_;
-
- DISALLOW_COPY_AND_ASSIGN(FixRateReceiver);
-};
-
-} // namespace net
-#endif // NET_QUIC_CONGESTION_CONTROL_FIX_RATE_RECEIVER_H_

Powered by Google App Engine
This is Rietveld 408576698