Index: webrtc/modules/remote_bitrate_estimator/test/packet.h |
diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet.h b/webrtc/modules/remote_bitrate_estimator/test/packet.h |
index 647e357f9b9601dfff7689cdf5da8927d42cd950..90f5cbb90385dc73f380a76cb000793744cd4edc 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/test/packet.h |
+++ b/webrtc/modules/remote_bitrate_estimator/test/packet.h |
@@ -64,6 +64,7 @@ class MediaPacket : public Packet { |
size_t payload_size, |
const RTPHeader& header); |
MediaPacket(int64_t send_time_us, uint32_t sequence_number); |
+ |
virtual ~MediaPacket() {} |
int64_t GetAbsSendTimeInMs() const { |
@@ -99,7 +100,7 @@ class FeedbackPacket : public Packet { |
int64_t latest_send_time_ms() const { return latest_send_time_ms_; } |
private: |
- int64_t latest_send_time_ms_; // Time stamp for the latest sent packet. |
+ int64_t latest_send_time_ms_; // Time stamp for the latest sent FbPacket. |
}; |
class RembFeedback : public FeedbackPacket { |