Chromium Code Reviews

Unified Diff: webrtc/p2p/quic/quictransportchannel.h

Issue 1842093002: Add the last_sent_packet_id to the candidate pair change signal (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/p2p/quic/quictransportchannel.h
diff --git a/webrtc/p2p/quic/quictransportchannel.h b/webrtc/p2p/quic/quictransportchannel.h
index a3c0106d0a096e088721339d93c5628604041049..ab02c77b9526f19e2adefe702e5d762089358327 100644
--- a/webrtc/p2p/quic/quictransportchannel.h
+++ b/webrtc/p2p/quic/quictransportchannel.h
@@ -232,7 +232,8 @@ class QuicTransportChannel : public TransportChannelImpl,
void OnRouteChange(TransportChannel* channel, const Candidate& candidate);
void OnSelectedCandidatePairChanged(
TransportChannel* channel,
- CandidatePairInterface* selected_candidate_pair);
+ CandidatePairInterface* selected_candidate_pair,
+ int last_sent_packet_id);
void OnConnectionRemoved(TransportChannelImpl* channel);
// Callbacks for |quic_|.

Powered by Google App Engine