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

Unified Diff: webrtc/media/engine/webrtcvoiceengine.cc

Issue 1844773002: Update the call when the network route 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/media/engine/webrtcvoiceengine.cc
diff --git a/webrtc/media/engine/webrtcvoiceengine.cc b/webrtc/media/engine/webrtcvoiceengine.cc
index 6fe3d86fd98f086fe0622711c7769573d5276a1b..a9615b67b5ceb303a4c576be007b2683c384b652 100644
--- a/webrtc/media/engine/webrtcvoiceengine.cc
+++ b/webrtc/media/engine/webrtcvoiceengine.cc
@@ -2331,8 +2331,7 @@ void WebRtcVoiceMediaChannel::OnRtcpReceived(
void WebRtcVoiceMediaChannel::OnNetworkRouteChanged(
const std::string& transport_name,
const NetworkRoute& network_route) {
- // TODO(honghaiz): uncomment this once the function in call is implemented.
- // call_->OnNetworkRouteChanged(transport_name, network_route);
+ call_->OnNetworkRouteChanged(transport_name, network_route);
}
bool WebRtcVoiceMediaChannel::MuteStream(uint32_t ssrc, bool muted) {

Powered by Google App Engine
This is Rietveld 408576698