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

Unified Diff: net/quic/core/quic_multipath_received_packet_manager.cc

Issue 2391933005: Remove unused "bytes" argument from QuicReceivedPacketManager::RecordPacketReceived. No functional… (Closed)
Patch Set: Delete unused kBytes Created 4 years, 2 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/core/quic_multipath_received_packet_manager.cc
diff --git a/net/quic/core/quic_multipath_received_packet_manager.cc b/net/quic/core/quic_multipath_received_packet_manager.cc
index 8c404834efd5dfd4d4b880f948f807a4a839557a..3440495c5df86d678b153e91eb144e54af91b7b3 100644
--- a/net/quic/core/quic_multipath_received_packet_manager.cc
+++ b/net/quic/core/quic_multipath_received_packet_manager.cc
@@ -45,7 +45,6 @@ void QuicMultipathReceivedPacketManager::OnPathClosed(QuicPathId path_id) {
void QuicMultipathReceivedPacketManager::RecordPacketReceived(
QuicPathId path_id,
- QuicByteCount bytes,
const QuicPacketHeader& header,
QuicTime receipt_time) {
QuicReceivedPacketManager* manager = path_managers_[path_id];
@@ -54,7 +53,7 @@ void QuicMultipathReceivedPacketManager::RecordPacketReceived(
return;
}
- manager->RecordPacketReceived(bytes, header, receipt_time);
+ manager->RecordPacketReceived(header, receipt_time);
}
bool QuicMultipathReceivedPacketManager::IsMissing(
« no previous file with comments | « net/quic/core/quic_multipath_received_packet_manager.h ('k') | net/quic/core/quic_multipath_received_packet_manager_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698