Delete the deprecated GetTransportParametersOffer().

Transport parameters are no longer retreived using this method, and no
implementations currently override it.

Bug: webrtc:9719
Change-Id: Iba0e1c7a320266f199aab6f2add36c6a22b48458
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/154004
Commit-Queue: Bjorn Mellem <mellem@webrtc.org>
Commit-Queue: Seth Hampson <shampson@webrtc.org>
Reviewed-by: Seth Hampson <shampson@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29272}
This commit is contained in:
Bjorn A Mellem
2019-09-23 13:00:57 -07:00
committed by Commit Bot
parent 988e63eb06
commit cd40de94ef

View File

@ -117,18 +117,6 @@ class DatagramTransportInterface : public DataChannelTransportInterface {
// before new sink is set.
virtual void SetDatagramSink(DatagramSinkInterface* sink) = 0;
// Retrieves callers config (i.e. media transport offer) that should be passed
// to the callee, before the call is connected. Such config is opaque to SDP
// (sdp just passes it through). The config is a binary blob, so SDP may
// choose to use base64 to serialize it (or any other approach that guarantees
// that the binary blob goes through). This should only be called for the
// caller's perspective.
//
// TODO(mellem): Delete.
virtual absl::optional<std::string> GetTransportParametersOffer() const {
return absl::nullopt;
}
// Retrieves transport parameters for this datagram transport. May be called
// on either client- or server-perspective transports.
//