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

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

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.cc
diff --git a/media/cast/net/rtcp/receiver_rtcp_event_subscriber.cc b/media/cast/net/rtcp/receiver_rtcp_event_subscriber.cc
index 7935e673ffc3c5071995c57175c53437d29d0ab9..87954ae29df8f60b09155929f55781445116468d 100644
--- a/media/cast/net/rtcp/receiver_rtcp_event_subscriber.cc
+++ b/media/cast/net/rtcp/receiver_rtcp_event_subscriber.cc
@@ -70,8 +70,8 @@ void ReceiverRtcpEventSubscriber::OnReceivePacketEvent(
}
struct CompareByFirst {
- bool operator()(const std::pair<RtpTimestamp, RtcpEvent>& a,
- const std::pair<RtpTimestamp, RtcpEvent>& b) {
+ bool operator()(const std::pair<RtpTimeTicks, RtcpEvent>& a,
+ const std::pair<RtpTimeTicks, RtcpEvent>& b) {
return a.first < b.first;
}
};
« no previous file with comments | « media/cast/net/rtcp/receiver_rtcp_event_subscriber.h ('k') | media/cast/net/rtcp/receiver_rtcp_event_subscriber_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698