commit | 83dc6b6f5380d7c03f5ebfe2553bf4a3147e2d1c | [log] [tgz] |
---|---|---|
author | zstein <zstein@webrtc.org> | Mon Jul 17 15:09:30 2017 -0700 |
committer | Commit Bot <commit-bot@chromium.org> | Mon Jul 17 22:09:30 2017 +0000 |
tree | 7e88822890827641a522bf92cba43ffb237eac07 | |
parent | d960a0c7d1330b34a7a1b4dfba29216f2a9db56e [diff] [blame] |
Remove default implementation of PeerConnectionInterface::SetBitrate. This was included to avoid breaking chromium, which now includes its own implementation (https://chromium.googlesource.com/chromium/src/+/725cb26dab3bae1cbb3339ed13186848f608cfad). BUG=webrtc:7395 Review-Url: https://codereview.webrtc.org/2924243003 Cr-Commit-Position: refs/heads/master@{#19063}
diff --git a/webrtc/api/peerconnectioninterface.h b/webrtc/api/peerconnectioninterface.h index 6649f2a..65c1278 100644 --- a/webrtc/api/peerconnectioninterface.h +++ b/webrtc/api/peerconnectioninterface.h
@@ -762,9 +762,7 @@ // // Setting |current_bitrate_bps| will reset the current bitrate estimate // to the provided value. - virtual RTCError SetBitrate(const BitrateParameters& bitrate) { - return RTCError::OK(); - } + virtual RTCError SetBitrate(const BitrateParameters& bitrate) = 0; // Returns the current SignalingState. virtual SignalingState signaling_state() = 0;