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

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

Issue 935333002: Update from https://crrev.com/316786 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « net/quic/congestion_control/tcp_loss_algorithm_test.cc ('k') | net/quic/congestion_control/tcp_receiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/congestion_control/tcp_receiver.h
diff --git a/net/quic/congestion_control/tcp_receiver.h b/net/quic/congestion_control/tcp_receiver.h
deleted file mode 100644
index 8c1658445f8bc54806c9c78b8f6faa85bd9f92ab..0000000000000000000000000000000000000000
--- a/net/quic/congestion_control/tcp_receiver.h
+++ /dev/null
@@ -1,37 +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.
-//
-// TCP receiver side congestion algorithm, emulates the behaviour of TCP.
-
-#ifndef NET_QUIC_CONGESTION_CONTROL_TCP_RECEIVER_H_
-#define NET_QUIC_CONGESTION_CONTROL_TCP_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_clock.h"
-#include "net/quic/quic_protocol.h"
-
-namespace net {
-
-class NET_EXPORT_PRIVATE TcpReceiver : public ReceiveAlgorithmInterface {
- public:
- TcpReceiver();
-
- // Size of the (currently fixed) receive window.
- static const QuicByteCount kReceiveWindowTCP;
-
- void RecordIncomingPacket(QuicByteCount bytes,
- QuicPacketSequenceNumber sequence_number,
- QuicTime timestamp) override;
-
- private:
- QuicByteCount receive_window_;
-
- DISALLOW_COPY_AND_ASSIGN(TcpReceiver);
-};
-
-} // namespace net
-#endif // NET_QUIC_CONGESTION_CONTROL_TCP_RECEIVER_H_
« no previous file with comments | « net/quic/congestion_control/tcp_loss_algorithm_test.cc ('k') | net/quic/congestion_control/tcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698