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

Unified Diff: chrome/renderer/media/cast_transport_sender_ipc.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: Compile fixes for cast_messages.h for chromeos cross-compiles. 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/renderer/media/cast_transport_sender_ipc.cc
diff --git a/chrome/renderer/media/cast_transport_sender_ipc.cc b/chrome/renderer/media/cast_transport_sender_ipc.cc
index afa858a5eace2511e51d5611082e10607db0b7f6..ffa53f84c832cd64274230ab4a81dae562a1c41e 100644
--- a/chrome/renderer/media/cast_transport_sender_ipc.cc
+++ b/chrome/renderer/media/cast_transport_sender_ipc.cc
@@ -66,7 +66,7 @@ void CastTransportSenderIPC::InsertFrame(uint32 ssrc,
void CastTransportSenderIPC::SendSenderReport(
uint32 ssrc,
base::TimeTicks current_time,
- uint32 current_time_as_rtp_timestamp) {
+ media::cast::RtpTimeTicks current_time_as_rtp_timestamp) {
Send(new CastHostMsg_SendSenderReport(channel_id_,
ssrc,
current_time,

Powered by Google App Engine
This is Rietveld 408576698