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

Unified Diff: chrome/browser/media/cast_transport_host_filter.cc

Issue 532373003: [Cast] RTT clean-up to the max! (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove RTT accessors in FrameSender (not needed post-refactor). Created 6 years, 3 months 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 | « chrome/browser/media/cast_transport_host_filter.h ('k') | chrome/common/cast_messages.h » ('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.cc
diff --git a/chrome/browser/media/cast_transport_host_filter.cc b/chrome/browser/media/cast_transport_host_filter.cc
index d2974370aa0940ad1f5cd26eb28ab5364ac4ffb4..298693bb6f3575a933785273aa895e6d288befff 100644
--- a/chrome/browser/media/cast_transport_host_filter.cc
+++ b/chrome/browser/media/cast_transport_host_filter.cc
@@ -61,16 +61,8 @@ void CastTransportHostFilter::SendRawEvents(
void CastTransportHostFilter::SendRtt(int32 channel_id,
uint32 ssrc,
- base::TimeDelta rtt,
- base::TimeDelta avg_rtt,
- base::TimeDelta min_rtt,
- base::TimeDelta max_rtt) {
- media::cast::RtcpRttReport report;
- report.rtt = rtt;
- report.avg_rtt = avg_rtt;
- report.min_rtt = min_rtt;
- report.max_rtt = max_rtt;
- Send(new CastMsg_Rtt(channel_id, ssrc, report));
+ base::TimeDelta rtt) {
+ Send(new CastMsg_Rtt(channel_id, ssrc, rtt));
}
void CastTransportHostFilter::SendCastMessage(
« no previous file with comments | « chrome/browser/media/cast_transport_host_filter.h ('k') | chrome/common/cast_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698