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

Unified Diff: chrome/browser/media/cast_transport_host_filter.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: 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: chrome/browser/media/cast_transport_host_filter.cc
diff --git a/chrome/browser/media/cast_transport_host_filter.cc b/chrome/browser/media/cast_transport_host_filter.cc
index 3f140734c2f728dcc3a414e4c29454de16f3a323..438f15821baface441458804cce013e85534723d 100644
--- a/chrome/browser/media/cast_transport_host_filter.cc
+++ b/chrome/browser/media/cast_transport_host_filter.cc
@@ -220,7 +220,7 @@ void CastTransportHostFilter::OnSendSenderReport(
int32 channel_id,
uint32 ssrc,
base::TimeTicks current_time,
- uint32 current_time_as_rtp_timestamp) {
+ media::cast::RtpTimeTicks current_time_as_rtp_timestamp) {
media::cast::CastTransportSender* sender = id_map_.Lookup(channel_id);
if (sender) {
sender->SendSenderReport(ssrc,

Powered by Google App Engine
This is Rietveld 408576698