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

Unified Diff: media/cast/net/rtcp/receiver_rtcp_event_subscriber.h

Issue 1515433002: Replace uses of raw uint32's with a type-checked RtpTimeTicks data type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: media/cast/net/rtcp/receiver_rtcp_event_subscriber.h
diff --git a/media/cast/net/rtcp/receiver_rtcp_event_subscriber.h b/media/cast/net/rtcp/receiver_rtcp_event_subscriber.h
index 248f07a74ea5a626613c2cbaf2bdf9a024f38b3d..cd90842ab2b705b7bba3c93906736ed7e8adf77f 100644
--- a/media/cast/net/rtcp/receiver_rtcp_event_subscriber.h
+++ b/media/cast/net/rtcp/receiver_rtcp_event_subscriber.h
@@ -31,8 +31,8 @@ static const size_t kMaxEventsPerRTCP = 20;
// timestamp) up to the size limit.
class ReceiverRtcpEventSubscriber : public RawEventSubscriber {
public:
- typedef std::pair<RtpTimestamp, RtcpEvent> RtcpEventPair;
- typedef std::vector<std::pair<RtpTimestamp, RtcpEvent> > RtcpEvents;
+ typedef std::pair<RtpTimeTicks, RtcpEvent> RtcpEventPair;
+ typedef std::vector<std::pair<RtpTimeTicks, RtcpEvent>> RtcpEvents;
// |max_size_to_retain|: The object will keep up to |max_size_to_retain|
// events

Powered by Google App Engine
This is Rietveld 408576698