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

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: Fix in chrome_common.gypi to avoid building cast_messages.* on Android. 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 25a2cca7dc2231ecc662a8365e4306f9d5cdf69f..0e6b600a7ed1b7f9c735b06e022d916ad332aa40 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_t channel_id,
uint32_t ssrc,
base::TimeTicks current_time,
- uint32_t 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