Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Unified Diff: pc/rtptransport.cc

Issue 3018513002: Revert of Completed the functionalities of SrtpTransport. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pc/rtptransport.h ('k') | pc/rtptransportinternal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pc/rtptransport.cc
diff --git a/pc/rtptransport.cc b/pc/rtptransport.cc
index 78a2af5407ad6d5dbb5568905f0a981c0da766a6..2917911e9ee5b45571c9d5bfa525ad09a7260d06 100644
--- a/pc/rtptransport.cc
+++ b/pc/rtptransport.cc
@@ -76,18 +76,6 @@ bool RtpTransport::IsWritable(bool rtcp) const {
return transport && transport->writable();
}
-bool RtpTransport::SendRtpPacket(rtc::CopyOnWriteBuffer* packet,
- const rtc::PacketOptions& options,
- int flags) {
- return SendPacket(false, packet, options, flags);
-}
-
-bool RtpTransport::SendRtcpPacket(rtc::CopyOnWriteBuffer* packet,
- const rtc::PacketOptions& options,
- int flags) {
- return SendPacket(true, packet, options, flags);
-}
-
bool RtpTransport::SendPacket(bool rtcp,
rtc::CopyOnWriteBuffer* packet,
const rtc::PacketOptions& options,
« no previous file with comments | « pc/rtptransport.h ('k') | pc/rtptransportinternal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698