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;