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

Unified Diff: chrome/browser/media/cast_transport_host_filter.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
« no previous file with comments | « no previous file | chrome/browser/media/cast_transport_host_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/cast_transport_host_filter.h
diff --git a/chrome/browser/media/cast_transport_host_filter.h b/chrome/browser/media/cast_transport_host_filter.h
index 8fbf47845bbfa4c9aa389c669f2321e1467be8d6..127e7d1c89d7bef5f980e028a8f0004eafd7aa35 100644
--- a/chrome/browser/media/cast_transport_host_filter.h
+++ b/chrome/browser/media/cast_transport_host_filter.h
@@ -54,10 +54,11 @@ class CastTransportHostFilter : public content::BrowserMessageFilter {
void OnInsertFrame(int32_t channel_id,
uint32_t ssrc,
const media::cast::EncodedFrame& frame);
- void OnSendSenderReport(int32_t channel_id,
- uint32_t ssrc,
- base::TimeTicks current_time,
- uint32_t current_time_as_rtp_timestamp);
+ void OnSendSenderReport(
+ int32_t channel_id,
+ uint32_t ssrc,
+ base::TimeTicks current_time,
+ media::cast::RtpTimeTicks current_time_as_rtp_timestamp);
void OnCancelSendingFrames(int32_t channel_id,
uint32_t ssrc,
const std::vector<uint32_t>& frame_ids);
« no previous file with comments | « no previous file | chrome/browser/media/cast_transport_host_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698