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

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

Issue 495173002: Remove timestamp_receiver. Not used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Remove_unused_received_packet_manager_73626837
Patch Set: Created 6 years, 4 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/timestamp_receiver.h
diff --git a/net/quic/congestion_control/timestamp_receiver.h b/net/quic/congestion_control/timestamp_receiver.h
deleted file mode 100644
index 3eb2a7c461e65c485ec29c5b8a578987c11853c0..0000000000000000000000000000000000000000
--- a/net/quic/congestion_control/timestamp_receiver.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 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.
-
-#ifndef NET_QUIC_CONGESTION_CONTROL_TIMESTAMP_RECEIVER_H_
-#define NET_QUIC_CONGESTION_CONTROL_TIMESTAMP_RECEIVER_H_
-
-#include "base/basictypes.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 TimestampReceiver : public ReceiveAlgorithmInterface {
- public:
- TimestampReceiver();
- virtual ~TimestampReceiver();
-
- virtual bool GenerateCongestionFeedback(
- QuicCongestionFeedbackFrame* feedback) OVERRIDE;
-
- virtual void RecordIncomingPacket(QuicByteCount bytes,
- QuicPacketSequenceNumber sequence_number,
- QuicTime timestamp) OVERRIDE;
-
- private:
- // The set of received packets since the last feedback was sent, along with
- // their arrival times.
- TimeMap received_packet_times_;
-
- DISALLOW_COPY_AND_ASSIGN(TimestampReceiver);
-};
-
-} // namespace net
-
-#endif // NET_QUIC_CONGESTION_CONTROL_TIMESTAMP_RECEIVER_H_
« no previous file with comments | « net/quic/congestion_control/receive_algorithm_interface.cc ('k') | net/quic/congestion_control/timestamp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698