X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fnet%2Fquic%2Fquic_ack_notifier_manager.h;h=bf5b345d1060b9fdbf59af5bbd0a447689dd7638;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=5ddf794e7bb70dac71bbf72f50c98d949a95751f;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/net/quic/quic_ack_notifier_manager.h b/src/net/quic/quic_ack_notifier_manager.h index 5ddf794..bf5b345 100644 --- a/src/net/quic/quic_ack_notifier_manager.h +++ b/src/net/quic/quic_ack_notifier_manager.h @@ -31,7 +31,6 @@ class QuicAckNotifier; // a set of AckNotifiers and a map from sequence number to AckNotifier the sake // of efficiency - we can quickly check the map to see if any AckNotifiers are // interested in a given sequence number. - class NET_EXPORT_PRIVATE AckNotifierManager { public: AckNotifierManager(); @@ -40,7 +39,8 @@ class NET_EXPORT_PRIVATE AckNotifierManager { // Called when the connection receives a new AckFrame. If |sequence_number| // exists in ack_notifier_map_ then the corresponding AckNotifiers will have // their OnAck method called. - void OnPacketAcked(QuicPacketSequenceNumber sequence_number); + void OnPacketAcked(QuicPacketSequenceNumber sequence_number, + QuicTime::Delta delta_largest_observed); // If a packet has been retransmitted with a new sequence number, then this // will be called. It updates the mapping in ack_notifier_map_, and also @@ -71,6 +71,8 @@ class NET_EXPORT_PRIVATE AckNotifierManager { // number, call OnAck for all mapped AckNotifiers. // Does not own the AckNotifiers. AckNotifierMap ack_notifier_map_; + + DISALLOW_COPY_AND_ASSIGN(AckNotifierManager); }; } // namespace net