| 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/core/quic_sent_packet_manager.h" | 5 #include "net/quic/core/quic_sent_packet_manager.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "net/quic/chromium/quic_utils_chromium.h" | 10 #include "net/quic/chromium/quic_utils_chromium.h" |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 959 | 959 |
| 960 const SendAlgorithmInterface* QuicSentPacketManager::GetSendAlgorithm() const { | 960 const SendAlgorithmInterface* QuicSentPacketManager::GetSendAlgorithm() const { |
| 961 return send_algorithm_.get(); | 961 return send_algorithm_.get(); |
| 962 } | 962 } |
| 963 | 963 |
| 964 void QuicSentPacketManager::SetStreamNotifier( | 964 void QuicSentPacketManager::SetStreamNotifier( |
| 965 StreamNotifierInterface* stream_notifier) { | 965 StreamNotifierInterface* stream_notifier) { |
| 966 unacked_packets_.SetStreamNotifier(stream_notifier); | 966 unacked_packets_.SetStreamNotifier(stream_notifier); |
| 967 } | 967 } |
| 968 | 968 |
| 969 #undef ENDPOINT |
| 970 |
| 969 } // namespace net | 971 } // namespace net |
| OLD | NEW |