| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/quic/quic_data_stream.h" | 5 #include "net/quic/quic_data_stream.h" |
| 6 | 6 |
| 7 #include "net/quic/quic_ack_notifier.h" | 7 #include "net/quic/quic_ack_notifier.h" |
| 8 #include "net/quic/quic_connection.h" | 8 #include "net/quic/quic_connection.h" |
| 9 #include "net/quic/quic_utils.h" | 9 #include "net/quic/quic_utils.h" |
| 10 #include "net/quic/quic_write_blocked_list.h" | 10 #include "net/quic/quic_write_blocked_list.h" |
| 11 #include "net/quic/spdy_utils.h" | 11 #include "net/quic/spdy_utils.h" |
| 12 #include "net/quic/test_tools/quic_flow_controller_peer.h" | 12 #include "net/quic/test_tools/quic_flow_controller_peer.h" |
| 13 #include "net/quic/test_tools/quic_session_peer.h" | 13 #include "net/quic/test_tools/quic_session_peer.h" |
| 14 #include "net/quic/test_tools/quic_test_utils.h" | 14 #include "net/quic/test_tools/quic_test_utils.h" |
| 15 #include "net/quic/test_tools/reliable_quic_stream_peer.h" | 15 #include "net/quic/test_tools/reliable_quic_stream_peer.h" |
| 16 #include "net/test/gtest_util.h" | 16 #include "net/test/gtest_util.h" |
| 17 #include "testing/gmock/include/gmock/gmock.h" | 17 #include "testing/gmock/include/gmock/gmock.h" |
| 18 | 18 |
| 19 using base::StringPiece; | 19 using base::StringPiece; |
| 20 using std::min; | 20 using std::min; |
| 21 using std::string; |
| 21 using testing::AnyNumber; | 22 using testing::AnyNumber; |
| 22 using testing::InSequence; | 23 using testing::InSequence; |
| 23 using testing::Return; | 24 using testing::Return; |
| 24 using testing::SaveArg; | 25 using testing::SaveArg; |
| 25 using testing::StrictMock; | 26 using testing::StrictMock; |
| 26 using testing::_; | 27 using testing::_; |
| 27 | 28 |
| 28 namespace net { | 29 namespace net { |
| 29 namespace test { | 30 namespace test { |
| 30 namespace { | 31 namespace { |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1)).Times(0); | 529 EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1)).Times(0); |
| 529 EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _)) | 530 EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _)) |
| 530 .WillOnce(Return(QuicConsumedData(0, fin))); | 531 .WillOnce(Return(QuicConsumedData(0, fin))); |
| 531 | 532 |
| 532 stream_->WriteOrBufferData(body, fin, nullptr); | 533 stream_->WriteOrBufferData(body, fin, nullptr); |
| 533 } | 534 } |
| 534 | 535 |
| 535 } // namespace | 536 } // namespace |
| 536 } // namespace test | 537 } // namespace test |
| 537 } // namespace net | 538 } // namespace net |
| OLD | NEW |