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

Unified Diff: net/quic/quic_received_packet_manager_test.cc

Issue 1227353005: Cleanup changes: Rename QuicSession::MarkWriteBlocked to (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « net/quic/crypto/strike_register_test.cc ('k') | net/quic/quic_reliable_client_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_received_packet_manager_test.cc
diff --git a/net/quic/quic_received_packet_manager_test.cc b/net/quic/quic_received_packet_manager_test.cc
index d91e4e0dd32736ddcb05175bb8e83f37d5b039b9..89e061de1651bef89b74c8feb813c05f70580349 100644
--- a/net/quic/quic_received_packet_manager_test.cc
+++ b/net/quic/quic_received_packet_manager_test.cc
@@ -212,7 +212,7 @@ class QuicReceivedPacketManagerTest : public ::testing::Test {
};
TEST_F(QuicReceivedPacketManagerTest, ReceivedPacketEntropyHash) {
- vector<pair<QuicPacketSequenceNumber, QuicPacketEntropyHash> > entropies;
+ vector<pair<QuicPacketSequenceNumber, QuicPacketEntropyHash>> entropies;
entropies.push_back(std::make_pair(1, 12));
entropies.push_back(std::make_pair(7, 1));
entropies.push_back(std::make_pair(2, 33));
@@ -254,7 +254,7 @@ TEST_F(QuicReceivedPacketManagerTest, EntropyHashAboveLargestObserved) {
}
TEST_F(QuicReceivedPacketManagerTest, SetCumulativeEntropyUpTo) {
- vector<pair<QuicPacketSequenceNumber, QuicPacketEntropyHash> > entropies;
+ vector<pair<QuicPacketSequenceNumber, QuicPacketEntropyHash>> entropies;
entropies.push_back(std::make_pair(1, 12));
entropies.push_back(std::make_pair(2, 1));
entropies.push_back(std::make_pair(3, 33));
« no previous file with comments | « net/quic/crypto/strike_register_test.cc ('k') | net/quic/quic_reliable_client_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698