| 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/test_tools/reliable_quic_stream_peer.h" | 5 #include "net/quic/test_tools/reliable_quic_stream_peer.h" |
| 6 | 6 |
| 7 #include <list> | 7 #include <list> |
| 8 | 8 |
| 9 #include "net/quic/reliable_quic_stream.h" | 9 #include "net/quic/reliable_quic_stream.h" |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 // static | 32 // static |
| 33 bool ReliableQuicStreamPeer::FinSent(ReliableQuicStream* stream) { | 33 bool ReliableQuicStreamPeer::FinSent(ReliableQuicStream* stream) { |
| 34 return stream->fin_sent_; | 34 return stream->fin_sent_; |
| 35 } | 35 } |
| 36 | 36 |
| 37 // static | 37 // static |
| 38 bool ReliableQuicStreamPeer::RstSent(ReliableQuicStream* stream) { | 38 bool ReliableQuicStreamPeer::RstSent(ReliableQuicStream* stream) { |
| 39 return stream->rst_sent_; | 39 return stream->rst_sent_; |
| 40 } | 40 } |
| 41 | 41 |
| 42 | |
| 43 | |
| 44 // static | 42 // static |
| 45 uint32 ReliableQuicStreamPeer::SizeOfQueuedData(ReliableQuicStream* stream) { | 43 uint32 ReliableQuicStreamPeer::SizeOfQueuedData(ReliableQuicStream* stream) { |
| 46 uint32 total = 0; | 44 uint32 total = 0; |
| 47 std::list<ReliableQuicStream::PendingData>::iterator it = | 45 std::list<ReliableQuicStream::PendingData>::iterator it = |
| 48 stream->queued_data_.begin(); | 46 stream->queued_data_.begin(); |
| 49 while (it != stream->queued_data_.end()) { | 47 while (it != stream->queued_data_.end()) { |
| 50 total += it->data.size(); | 48 total += it->data.size(); |
| 51 ++it; | 49 ++it; |
| 52 } | 50 } |
| 53 return total; | 51 return total; |
| 54 } | 52 } |
| 55 | 53 |
| 56 } // namespace test | 54 } // namespace test |
| 57 } // namespace net | 55 } // namespace net |
| OLD | NEW |