diff --git a/pc/rtp_transport_internal.h b/pc/rtp_transport_internal.h index ea1f5375ea..9e816113f1 100644 --- a/pc/rtp_transport_internal.h +++ b/pc/rtp_transport_internal.h @@ -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; diff --git a/pc/srtp_transport.h b/pc/srtp_transport.h index e4b0d9fff6..ae62d5b780 100644 --- a/pc/srtp_transport.h +++ b/pc/srtp_transport.h @@ -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);