aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h
diff options
context:
space:
mode:
authorxians@webrtc.org <xians@webrtc.org>2014-10-10 09:42:53 +0000
committerxians@webrtc.org <xians@webrtc.org>2014-10-10 09:42:53 +0000
commit3cefbc99f4cc2db744cb130ca629768401a59eb4 (patch)
tree0e6c6e9ce4d711ec02bea31a5f14a59799e04068 /webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h
parentafede835ee3b0ed1f95ae1d54bed149573fb6282 (diff)
downloadwebrtc-3cefbc99f4cc2db744cb130ca629768401a59eb4.tar.gz
Mark all virtual overrides in the hierarchy of Transport as virtual + OVERRIDE.
This also marks all virtual overrides of other classes in the same files. This will make a subsequent change I intend to do safer, where I'll change the argument types of the base Transport functions, by breaking the compile if I miss any overrides. This also highlighted a number of unused functions. I've removed some of these. TBR=mflodman@webrtc.org, pkasting@chromium.org BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/28709004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7421 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h')
-rw-r--r--webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h b/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h
index ade827e2fc..3968e65ae4 100644
--- a/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h
+++ b/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.h
@@ -68,8 +68,6 @@ public:
int32_t SetPacketTimeout(const uint32_t timeoutMS);
- bool timeOutTriggered () { return (_timeOut); };
-
// Inherited from RtpFeedback
virtual int32_t OnInitializeDecoder(
const int32_t id,
@@ -81,14 +79,6 @@ public:
return 0;
}
- virtual void OnPacketTimeout(const int32_t id);
-
- virtual void OnReceivedPacket(const int32_t id,
- const RtpRtcpPacketType packetType);
-
- virtual void OnPeriodicDeadOrAlive(const int32_t id,
- const RTPAliveType alive) {};
-
virtual void OnIncomingSSRCChanged(const int32_t id,
const uint32_t SSRC) OVERRIDE {}
@@ -159,7 +149,6 @@ private:
TestLoadGenerator* _loadGenerator;
bool _isSender;
bool _isReceiver;
- bool _timeOut;
SendRecCB * _sendRecCB;
uint32_t _lastBytesReceived;
int64_t _lastTime;