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

Unified Diff: webrtc/p2p/base/transportchannel.h

Issue 1803063004: Reset the BWE when the network changes (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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/p2p/base/transportchannel.h
diff --git a/webrtc/p2p/base/transportchannel.h b/webrtc/p2p/base/transportchannel.h
index b91af139b7155d35589305deef52cb0bb7308eb5..c09d8d8a0af1dcfe6e6c008bb7d59a7ad4a62527 100644
--- a/webrtc/p2p/base/transportchannel.h
+++ b/webrtc/p2p/base/transportchannel.h
@@ -151,6 +151,12 @@ class TransportChannel : public sigslot::has_slots<> {
// indicates where and how we are currently sending media.
sigslot::signal2<TransportChannel*, const Candidate&> SignalRouteChange;
+ // This signals the network has changed on either end of the connection.
+ // The first parameter is the transport channel that signaled the event.
+ // The second parameter is the local network id of the connection.
+ // The third parameter is the remote network id of the connection.
+ sigslot::signal3<TransportChannel*, int, int> SignalNetworkChanged;
+
// Invoked when the channel is being destroyed.
sigslot::signal1<TransportChannel*> SignalDestroyed;

Powered by Google App Engine
This is Rietveld 408576698