Index: net/quic/quic_session_test.cc |
diff --git a/net/quic/quic_session_test.cc b/net/quic/quic_session_test.cc |
index b5fb5654949664d98dcba22043f20324d9366231..d5468e7f2c0609c1fec6e4818d751133b1c04844 100644 |
--- a/net/quic/quic_session_test.cc |
+++ b/net/quic/quic_session_test.cc |
@@ -846,7 +846,9 @@ TEST_P(QuicSessionTest, FlowControlWithInvalidFinalOffset) { |
TestStream* stream = session_.CreateOutgoingDataStream(); |
stream->Reset(QUIC_STREAM_CANCELLED); |
QuicStreamFrame frame(stream->id(), true, kLargeOffset, IOVector()); |
- session_.OnStreamFrames({frame}); |
+ vector<QuicStreamFrame> frames; |
+ frames.push_back(frame); |
+ session_.OnStreamFrames(frames); |
Ryan Hamilton
2014/06/13 23:43:15
I was thinking about this change, too.
ramant (doing other things)
2014/06/14 00:05:28
I will port the above change back to internal code
Jana
2014/06/14 00:57:27
I don't think this change was part of the original
|
// Check that RST results in connection close. |
QuicRstStreamFrame rst_frame(stream->id(), QUIC_STREAM_CANCELLED, |