| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/reliable_quic_stream.h" | 5 #include "net/quic/core/reliable_quic_stream.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "net/quic/quic_connection.h" | 9 #include "net/quic/core/quic_connection.h" |
| 10 #include "net/quic/quic_flags.h" | 10 #include "net/quic/core/quic_flags.h" |
| 11 #include "net/quic/quic_utils.h" | 11 #include "net/quic/core/quic_utils.h" |
| 12 #include "net/quic/quic_write_blocked_list.h" | 12 #include "net/quic/core/quic_write_blocked_list.h" |
| 13 #include "net/quic/spdy_utils.h" | 13 #include "net/quic/core/spdy_utils.h" |
| 14 #include "net/quic/test_tools/quic_config_peer.h" | 14 #include "net/quic/test_tools/quic_config_peer.h" |
| 15 #include "net/quic/test_tools/quic_connection_peer.h" | 15 #include "net/quic/test_tools/quic_connection_peer.h" |
| 16 #include "net/quic/test_tools/quic_flow_controller_peer.h" | 16 #include "net/quic/test_tools/quic_flow_controller_peer.h" |
| 17 #include "net/quic/test_tools/quic_session_peer.h" | 17 #include "net/quic/test_tools/quic_session_peer.h" |
| 18 #include "net/quic/test_tools/quic_test_utils.h" | 18 #include "net/quic/test_tools/quic_test_utils.h" |
| 19 #include "net/quic/test_tools/reliable_quic_stream_peer.h" | 19 #include "net/quic/test_tools/reliable_quic_stream_peer.h" |
| 20 #include "net/test/gtest_util.h" | 20 #include "net/test/gtest_util.h" |
| 21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
| 22 #include "testing/gmock_mutant.h" | 22 #include "testing/gmock_mutant.h" |
| 23 | 23 |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 // Receive remaining data and FIN for the request. | 714 // Receive remaining data and FIN for the request. |
| 715 QuicStreamFrame frame2(stream_->id(), true, 0, StringPiece("End")); | 715 QuicStreamFrame frame2(stream_->id(), true, 0, StringPiece("End")); |
| 716 stream_->OnStreamFrame(frame2); | 716 stream_->OnStreamFrame(frame2); |
| 717 EXPECT_TRUE(stream_->fin_received()); | 717 EXPECT_TRUE(stream_->fin_received()); |
| 718 EXPECT_TRUE(stream_->HasFinalReceivedByteOffset()); | 718 EXPECT_TRUE(stream_->HasFinalReceivedByteOffset()); |
| 719 } | 719 } |
| 720 | 720 |
| 721 } // namespace | 721 } // namespace |
| 722 } // namespace test | 722 } // namespace test |
| 723 } // namespace net | 723 } // namespace net |
| OLD | NEW |