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

Unified Diff: content/renderer/media/rtc_peer_connection_handler.cc

Issue 2813883004: Remove RTCIceTransportPolicy "none". (Closed)
Patch Set: Updated failing tests in RTCPeerConnection.html Created 3 years, 8 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: content/renderer/media/rtc_peer_connection_handler.cc
diff --git a/content/renderer/media/rtc_peer_connection_handler.cc b/content/renderer/media/rtc_peer_connection_handler.cc
index ac801ce7ae1a7ac46160cc170153b2510af2e44e..46194b1f768e3279f005f602e511e9da29f763b1 100644
--- a/content/renderer/media/rtc_peer_connection_handler.cc
+++ b/content/renderer/media/rtc_peer_connection_handler.cc
@@ -250,9 +250,6 @@ void GetNativeRtcConfiguration(
}
switch (blink_config.ice_transport_policy) {
- case blink::WebRTCIceTransportPolicy::kNone:
- webrtc_config->type = webrtc::PeerConnectionInterface::kNone;
- break;
case blink::WebRTCIceTransportPolicy::kRelay:
webrtc_config->type = webrtc::PeerConnectionInterface::kRelay;
break;

Powered by Google App Engine
This is Rietveld 408576698