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

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: Speculative workaround fix for win8_chromium_ng compile error. 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 4e82f0a2fd23ea6c6dbdfa3ec8cca0dd2c83550b..63794fe34e9b8775caa1e18733964cdb12ed1cf6 100644
--- a/media/cast/net/rtcp/receiver_rtcp_event_subscriber.h
+++ b/media/cast/net/rtcp/receiver_rtcp_event_subscriber.h
@@ -35,8 +35,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
« no previous file with comments | « media/cast/net/pacing/paced_sender_unittest.cc ('k') | media/cast/net/rtcp/receiver_rtcp_event_subscriber.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698