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

Unified Diff: chrome/renderer/media/cast_ipc_dispatcher.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/renderer/media/cast_ipc_dispatcher.h ('k') | chrome/renderer/media/cast_transport_sender_ipc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_ipc_dispatcher.cc
diff --git a/chrome/renderer/media/cast_ipc_dispatcher.cc b/chrome/renderer/media/cast_ipc_dispatcher.cc
index 684bc9a765666570afead4bc614fce2f1eb5a60a..bb927bd08af160bcdc135106aca46112bdb6c94a 100644
--- a/chrome/renderer/media/cast_ipc_dispatcher.cc
+++ b/chrome/renderer/media/cast_ipc_dispatcher.cc
@@ -102,10 +102,10 @@ void CastIPCDispatcher::OnRawEvents(
void CastIPCDispatcher::OnRtt(int32 channel_id,
uint32 ssrc,
- const media::cast::RtcpRttReport& rtt_report) {
+ base::TimeDelta rtt) {
CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
if (sender) {
- sender->OnRtt(ssrc, rtt_report);
+ sender->OnRtt(ssrc, rtt);
} else {
DVLOG(1) << "CastIPCDispatcher::OnRtt on non-existing channel.";
}
« no previous file with comments | « chrome/renderer/media/cast_ipc_dispatcher.h ('k') | chrome/renderer/media/cast_transport_sender_ipc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698