From ef173f02bb518a4efdb70edff0f9e6cc0682a1e4 Mon Sep 17 00:00:00 2001 From: Sameer Vijaykar Date: Mon, 20 Feb 2023 15:26:18 +0100 Subject: [PATCH] Default enable active ICE controller. Refactor is fully launched on mobile and approved for full launch on chromium. Bug: webrtc:14367, chromium:1368516 Change-Id: I536f2630887eb187e8f9397ba033dbb65f4acad8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/294281 Commit-Queue: Sameer Vijaykar Reviewed-by: Jonas Oreland Cr-Commit-Position: refs/heads/main@{#39388} --- p2p/base/p2p_transport_channel.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/p2p/base/p2p_transport_channel.cc b/p2p/base/p2p_transport_channel.cc index 15b1cf6f87..263f6912be 100644 --- a/p2p/base/p2p_transport_channel.cc +++ b/p2p/base/p2p_transport_channel.cc @@ -97,9 +97,10 @@ rtc::RouteEndpoint CreateRouteEndpointFromCandidate( bool UseActiveIceControllerFieldTrialEnabled( const webrtc::FieldTrialsView* field_trials) { // Feature to refactor ICE controller and enable active ICE controllers. - // Field trial key reserved in bugs.webrtc.org/14367 - return field_trials && - field_trials->IsEnabled("WebRTC-UseActiveIceController"); + // Default enable for full launch. + // TODO(bugs.webrtc.org/14367): Code branching will be cleaned up in a + // follow-up CL. + return true; } using ::webrtc::RTCError;