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

Unified Diff: net/tools/quic/quic_time_wait_list_manager_test.cc

Issue 2849543002: Remove unused packet parameter from QuicTimeWaitListManager::ProcessPacket. (Closed)
Patch Set: Created 3 years, 8 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/tools/quic/quic_time_wait_list_manager_test.cc
diff --git a/net/tools/quic/quic_time_wait_list_manager_test.cc b/net/tools/quic/quic_time_wait_list_manager_test.cc
index e8da20f08cc7aae9c4723f94d44d07b1e9795846..f76c51c0ea835b1ccb62c24268c75a141e36fcf4 100644
--- a/net/tools/quic/quic_time_wait_list_manager_test.cc
+++ b/net/tools/quic/quic_time_wait_list_manager_test.cc
@@ -115,9 +115,8 @@ class QuicTimeWaitListManagerTest : public ::testing::Test {
}
void ProcessPacket(QuicConnectionId connection_id) {
- QuicEncryptedPacket packet(nullptr, 0);
time_wait_list_manager_.ProcessPacket(server_address_, client_address_,
- connection_id, packet);
+ connection_id);
}
QuicEncryptedPacket* ConstructEncryptedPacket(
« no previous file with comments | « net/tools/quic/quic_time_wait_list_manager.cc ('k') | net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698