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

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: 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 | « media/cast/net/cast_transport_sender_impl_unittest.cc ('k') | media/cast/net/pacing/paced_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1fd4b5700011388504953dd973128c8c58ed6e85..371b419251c96ce0b5589039fbb441a4685fbba7 100644
--- a/media/cast/net/mock_cast_transport_sender.h
+++ b/media/cast/net/mock_cast_transport_sender.h
@@ -30,9 +30,10 @@ class MockCastTransportSender : public CastTransportSender {
MOCK_METHOD3(SendSenderReport,
void(uint32_t ssrc,
base::TimeTicks current_time,
- uint32_t current_time_as_rtp_timestamp));
- MOCK_METHOD2(CancelSendingFrames,
- void(uint32_t ssrc, const std::vector<uint32_t>& frame_ids));
+ RtpTimeTicks current_time_as_rtp_timestamp));
+ MOCK_METHOD2(CancelSendingFrames, void(
+ uint32_t ssrc,
+ const std::vector<uint32_t>& frame_ids));
MOCK_METHOD2(ResendFrameForKickstart, void(uint32_t ssrc, uint32_t frame_id));
MOCK_METHOD0(PacketReceiverForTesting, PacketReceiverCallback());
MOCK_METHOD1(AddValidSsrc, void(uint32_t ssrc));
« no previous file with comments | « media/cast/net/cast_transport_sender_impl_unittest.cc ('k') | media/cast/net/pacing/paced_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698