Remove default implementation of PeerConnectionInterface::SetBitrate.

This was included to avoid breaking chromium, which now includes its own implementation (725cb26dab).

BUG=webrtc:7395

Review-Url: https://codereview.webrtc.org/2924243003
Cr-Commit-Position: refs/heads/master@{#19063}
This commit is contained in:
zstein
2017-07-17 15:09:30 -07:00
committed by Commit Bot
parent d960a0c7d1
commit 83dc6b6f53

View File

@ -762,9 +762,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
// //
// Setting |current_bitrate_bps| will reset the current bitrate estimate // Setting |current_bitrate_bps| will reset the current bitrate estimate
// to the provided value. // to the provided value.
virtual RTCError SetBitrate(const BitrateParameters& bitrate) { virtual RTCError SetBitrate(const BitrateParameters& bitrate) = 0;
return RTCError::OK();
}
// Returns the current SignalingState. // Returns the current SignalingState.
virtual SignalingState signaling_state() = 0; virtual SignalingState signaling_state() = 0;