| 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 <string> |
| 8 |
| 7 #include "net/quic/quic_ack_notifier.h" | 9 #include "net/quic/quic_ack_notifier.h" |
| 8 #include "net/quic/quic_connection.h" | 10 #include "net/quic/quic_connection.h" |
| 9 #include "net/quic/quic_utils.h" | 11 #include "net/quic/quic_utils.h" |
| 10 #include "net/quic/quic_write_blocked_list.h" | 12 #include "net/quic/quic_write_blocked_list.h" |
| 11 #include "net/quic/spdy_utils.h" | 13 #include "net/quic/spdy_utils.h" |
| 12 #include "net/quic/test_tools/quic_flow_controller_peer.h" | 14 #include "net/quic/test_tools/quic_flow_controller_peer.h" |
| 13 #include "net/quic/test_tools/quic_session_peer.h" | 15 #include "net/quic/test_tools/quic_session_peer.h" |
| 14 #include "net/quic/test_tools/quic_test_utils.h" | 16 #include "net/quic/test_tools/quic_test_utils.h" |
| 15 #include "net/quic/test_tools/reliable_quic_stream_peer.h" | 17 #include "net/quic/test_tools/reliable_quic_stream_peer.h" |
| 16 #include "net/test/gtest_util.h" | 18 #include "net/test/gtest_util.h" |
| 17 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
| 18 | 20 |
| 19 using base::StringPiece; | 21 using base::StringPiece; |
| 20 using std::min; | 22 using std::min; |
| 23 using std::string; |
| 21 using testing::AnyNumber; | 24 using testing::AnyNumber; |
| 22 using testing::InSequence; | 25 using testing::InSequence; |
| 23 using testing::Return; | 26 using testing::Return; |
| 24 using testing::SaveArg; | 27 using testing::SaveArg; |
| 25 using testing::StrictMock; | 28 using testing::StrictMock; |
| 26 using testing::_; | 29 using testing::_; |
| 27 | 30 |
| 28 namespace net { | 31 namespace net { |
| 29 namespace test { | 32 namespace test { |
| 30 namespace { | 33 namespace { |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1)).Times(0); | 531 EXPECT_CALL(*connection_, SendBlocked(kClientDataStreamId1)).Times(0); |
| 529 EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _)) | 532 EXPECT_CALL(*session_, WritevData(kClientDataStreamId1, _, _, _, _, _)) |
| 530 .WillOnce(Return(QuicConsumedData(0, fin))); | 533 .WillOnce(Return(QuicConsumedData(0, fin))); |
| 531 | 534 |
| 532 stream_->WriteOrBufferData(body, fin, nullptr); | 535 stream_->WriteOrBufferData(body, fin, nullptr); |
| 533 } | 536 } |
| 534 | 537 |
| 535 } // namespace | 538 } // namespace |
| 536 } // namespace test | 539 } // namespace test |
| 537 } // namespace net | 540 } // namespace net |
| OLD | NEW |