| Index: Source/platform/exported/WebRTCConfiguration.cpp
|
| diff --git a/Source/platform/exported/WebRTCConfiguration.cpp b/Source/platform/exported/WebRTCConfiguration.cpp
|
| index 2ea6c70f036b062f26d3edadd38a2f147910defd..df1150dee6d2346b1bffd8539b4cc645ac59e5bc 100644
|
| --- a/Source/platform/exported/WebRTCConfiguration.cpp
|
| +++ b/Source/platform/exported/WebRTCConfiguration.cpp
|
| @@ -130,4 +130,18 @@ WebRTCBundlePolicy WebRTCConfiguration::bundlePolicy() const
|
| return WebRTCBundlePolicyBalanced;
|
| }
|
|
|
| +WebRTCRtcpMuxPolicy WebRTCConfiguration::rtcpMuxPolicy() const
|
| +{
|
| + ASSERT(!isNull());
|
| + switch (m_private->rtcpMuxPolicy()) {
|
| + case RTCRtcpMuxPolicyNegotiate:
|
| + return WebRTCRtcpMuxPolicyNegotiate;
|
| + case RTCRtcpMuxPolicyRequire:
|
| + return WebRTCRtcpMuxPolicyRequire;
|
| + default:
|
| + ASSERT_NOT_REACHED();
|
| + }
|
| + return WebRTCRtcpMuxPolicyNegotiate;
|
| +}
|
| +
|
| } // namespace blink
|
|
|