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

Unified Diff: media/cast/net/mock_cast_transport_sender.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: 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: media/cast/net/mock_cast_transport_sender.h
diff --git a/media/cast/net/mock_cast_transport_sender.h b/media/cast/net/mock_cast_transport_sender.h
index 0827e1f9c8cb4711d4db994e5f7b070532709f2b..0f3cef7099085cbb981fde5ddd592ce2e4e06cb3 100644
--- a/media/cast/net/mock_cast_transport_sender.h
+++ b/media/cast/net/mock_cast_transport_sender.h
@@ -25,10 +25,10 @@ class MockCastTransportSender : public CastTransportSender {
const RtcpCastMessageCallback& cast_message_cb,
const RtcpRttCallback& rtt_cb));
MOCK_METHOD2(InsertFrame, void(uint32 ssrc, const EncodedFrame& frame));
- MOCK_METHOD3(SendSenderReport, void(
- uint32 ssrc,
- base::TimeTicks current_time,
- uint32 current_time_as_rtp_timestamp));
+ MOCK_METHOD3(SendSenderReport,
+ void(uint32 ssrc,
+ base::TimeTicks current_time,
+ RtpTimeTicks current_time_as_rtp_timestamp));
MOCK_METHOD2(CancelSendingFrames, void(
uint32 ssrc,
const std::vector<uint32>& frame_ids));

Powered by Google App Engine
This is Rietveld 408576698