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 #ifndef NET_QUIC_QUIC_ACK_NOTIFIER_H_ | 5 #ifndef NET_QUIC_QUIC_ACK_NOTIFIER_H_ |
6 #define NET_QUIC_QUIC_ACK_NOTIFIER_H_ | 6 #define NET_QUIC_QUIC_ACK_NOTIFIER_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "net/quic/quic_protocol.h" | 9 #include "net/quic/quic_protocol.h" |
10 | 10 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 // Transmission and retransmission stats. | 86 // Transmission and retransmission stats. |
87 // Number of packets in the original transmission. | 87 // Number of packets in the original transmission. |
88 int original_packet_count_; | 88 int original_packet_count_; |
89 // Number of packets in the original transmission. | 89 // Number of packets in the original transmission. |
90 int original_byte_count_; | 90 int original_byte_count_; |
91 // Number of packets that had to be retransmitted. | 91 // Number of packets that had to be retransmitted. |
92 int retransmitted_packet_count_; | 92 int retransmitted_packet_count_; |
93 // Number of bytes that had to be retransmitted. | 93 // Number of bytes that had to be retransmitted. |
94 int retransmitted_byte_count_; | 94 int retransmitted_byte_count_; |
| 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(QuicAckNotifier); |
95 }; | 97 }; |
96 | 98 |
97 }; // namespace net | 99 }; // namespace net |
98 | 100 |
99 #endif // NET_QUIC_QUIC_ACK_NOTIFIER_H_ | 101 #endif // NET_QUIC_QUIC_ACK_NOTIFIER_H_ |
OLD | NEW |