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;