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

Unified Diff: net/quic/quic_network_transaction_unittest.cc

Issue 478153003: Change the wire format of the ack frame to include a compressed version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/quic_network_transaction_unittest.cc
diff --git a/net/quic/quic_network_transaction_unittest.cc b/net/quic/quic_network_transaction_unittest.cc
index 3d119fbd86355f17be7e963254c8966834bf18dd..f6fc938ab1e29ffab37b85a54dc25b229e3b675e 100644
--- a/net/quic/quic_network_transaction_unittest.cc
+++ b/net/quic/quic_network_transaction_unittest.cc
@@ -143,7 +143,8 @@ class QuicNetworkTransactionTest
scoped_ptr<QuicEncryptedPacket> ConstructAckPacket(
QuicPacketSequenceNumber largest_received,
QuicPacketSequenceNumber least_unacked) {
- return maker_.MakeAckPacket(2, largest_received, least_unacked, true);
+ return maker_.MakeAckPacket(2, largest_received, least_unacked, true,
+ clock_->Now());
ramant (doing other things) 2014/08/23 23:55:28 Hi Ryan, In QuicFramer::AppendTimestampToAckFram
Ryan Hamilton 2014/08/25 22:07:51 Alternatively, consider passing a clock in to the
ramant (doing other things) 2014/08/25 23:39:35 Thanks for the above suggestion. Done.
}
SpdyHeaderBlock GetRequestHeaders(const std::string& method,

Powered by Google App Engine
This is Rietveld 408576698