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

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

Issue 2055553003: Change the default rtcp mux policy from negotiate to require. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test Created 4 years 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 ed4898fa68ff67431e7fa5fd1f229a8b56bb4499..1b7ce29f57ff49e15ebd9dfd7196e5b676d7b8e9 100644
--- a/content/renderer/media/rtc_peer_connection_handler.cc
+++ b/content/renderer/media/rtc_peer_connection_handler.cc
@@ -1398,12 +1398,6 @@ bool RTCPeerConnectionHandler::setConfiguration(
return native_peer_connection_->SetConfiguration(configuration_);
}
-void RTCPeerConnectionHandler::logSelectedRtcpMuxPolicy(
- blink::RtcpMuxPolicy selectedRtcpMuxPolicy) {
- UMA_HISTOGRAM_ENUMERATION("WebRTC.PeerConnection.SelectedRtcpMuxPolicy",
- selectedRtcpMuxPolicy, blink::RtcpMuxPolicyMax);
-}
-
bool RTCPeerConnectionHandler::addICECandidate(
const blink::WebRTCVoidRequest& request,
const blink::WebRTCICECandidate& candidate) {

Powered by Google App Engine
This is Rietveld 408576698