Delete the remaining comments about SrtpTransportInterface.

SrtpTransportInterface has been deleted, but the comment is still
retained.

Bug: None
Change-Id: I5565a29bea663a396560f7458abbe902187b1338
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/264660
Reviewed-by: Henrik Boström <hbos@webrtc.org>
Commit-Queue: Henrik Boström <hbos@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37131}
This commit is contained in:
Yaowen Guo 2022-06-01 18:57:04 +08:00 committed by WebRTC LUCI CQ
parent d589fbdaca
commit fe91129f6b
2 changed files with 4 additions and 5 deletions

View File

@ -27,10 +27,10 @@ struct PacketOptions;
namespace webrtc {
// This represents the internal interface beneath SrtpTransportInterface;
// it is not accessible to API consumers but is accessible to internal classes
// in order to send and receive RTP and RTCP packets belonging to a single RTP
// session. Additional convenience and configuration methods are also provided.
// This class is an internal interface; it is not accessible to API consumers
// but is accessible to internal classes in order to send and receive RTP and
// RTCP packets belonging to a single RTP session. Additional convenience and
// configuration methods are also provided.
class RtpTransportInternal : public sigslot::has_slots<> {
public:
virtual ~RtpTransportInternal() = default;

View File

@ -41,7 +41,6 @@ class SrtpTransport : public RtpTransport {
virtual ~SrtpTransport() = default;
// SrtpTransportInterface specific implementation.
virtual RTCError SetSrtpSendKey(const cricket::CryptoParams& params);
virtual RTCError SetSrtpReceiveKey(const cricket::CryptoParams& params);