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

Unified Diff: webrtc/test/channel_transport/udp_transport.h

Issue 1369263002: Unify Transport and newapi::Transport interfaces. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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
Index: webrtc/test/channel_transport/udp_transport.h
diff --git a/webrtc/test/channel_transport/udp_transport.h b/webrtc/test/channel_transport/udp_transport.h
index a9238356850d842ddf8b489c6b3a8b799d081449..4f4ec061111d3d916c716de9287a5950905cb623 100644
--- a/webrtc/test/channel_transport/udp_transport.h
+++ b/webrtc/test/channel_transport/udp_transport.h
@@ -12,6 +12,7 @@
#define WEBRTC_TEST_CHANNEL_TRANSPORT_UDP_TRANSPORT_H_
#include "webrtc/common_types.h"
+#include "webrtc/transport.h"
#include "webrtc/typedefs.h"
/*
@@ -295,7 +296,7 @@ class UdpTransport : public Transport {
// Send RTCP data with size length to the address specified by to.
- virtual int32_t SendRTCPPacketTo(const int8_t* data,
+ virtual int32_t SendRtcpTo(const int8_t* data,
size_t length,
const SocketAddress& to) = 0;
@@ -308,7 +309,7 @@ class UdpTransport : public Transport {
// Send RTCP data with size length to ip:rtcpPort where ip is the ip set by
// the InitializeSendSockets(..) call.
- virtual int32_t SendRTCPPacketTo(const int8_t* data,
+ virtual int32_t SendRtcpTo(const int8_t* data,
size_t length,
uint16_t rtcpPort) = 0;

Powered by Google App Engine
This is Rietveld 408576698