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

Unified Diff: third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h

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: Remove the histogram. Created 4 years, 1 month 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: third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
diff --git a/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h b/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
index c603e7ce128994d6e9dc444f6d649b1c49c06bbc..48b4439ca50d5c1d9f56b94ccb83afae2590e011 100644
--- a/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
+++ b/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
@@ -51,15 +51,6 @@ class WebString;
struct WebRTCConfiguration;
struct WebRTCDataChannelInit;
-// Used to back histogram value of
-// "WebRTC.PeerConnection.SelectedRtcpMuxPolicy", so treat as append-only.
-enum RtcpMuxPolicy {
- RtcpMuxPolicyRequire,
- RtcpMuxPolicyNegotiate,
- RtcpMuxPolicyDefault,
- RtcpMuxPolicyMax
-};
-
class WebRTCPeerConnectionHandler {
public:
virtual ~WebRTCPeerConnectionHandler() {}
@@ -82,7 +73,6 @@ class WebRTCPeerConnectionHandler {
virtual WebRTCSessionDescription localDescription() = 0;
virtual WebRTCSessionDescription remoteDescription() = 0;
virtual bool updateICE(const WebRTCConfiguration&) = 0;
- virtual void logSelectedRtcpMuxPolicy(RtcpMuxPolicy) = 0;
// DEPRECATED
virtual bool addICECandidate(const WebRTCICECandidate&) { return false; }

Powered by Google App Engine
This is Rietveld 408576698