Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2527)

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

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: Merge with head Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/p2p/quic/quictransportchannel.h ('k') | webrtc/pc/channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/quic/quictransportchannel.cc
diff --git a/webrtc/p2p/quic/quictransportchannel.cc b/webrtc/p2p/quic/quictransportchannel.cc
index 7e68612388b85e85b5ca522a64c0a91f3b354375..cc0576ddb239a50bea2fbadc8cd541e3a6eb33aa 100644
--- a/webrtc/p2p/quic/quictransportchannel.cc
+++ b/webrtc/p2p/quic/quictransportchannel.cc
@@ -391,9 +391,11 @@ void QuicTransportChannel::OnRouteChange(TransportChannel* channel,
void QuicTransportChannel::OnSelectedCandidatePairChanged(
TransportChannel* channel,
- CandidatePairInterface* selected_candidate_pair) {
+ CandidatePairInterface* selected_candidate_pair,
+ int last_sent_packet_id) {
ASSERT(channel == channel_);
- SignalSelectedCandidatePairChanged(this, selected_candidate_pair);
+ SignalSelectedCandidatePairChanged(this, selected_candidate_pair,
+ last_sent_packet_id);
}
void QuicTransportChannel::OnConnectionRemoved(TransportChannelImpl* channel) {
« no previous file with comments | « webrtc/p2p/quic/quictransportchannel.h ('k') | webrtc/pc/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698