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

Unified Diff: media/cast/net/rtp/rtp_parser_unittest.cc

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/rtp/rtp_parser.cc ('k') | media/cast/receiver/cast_receiver_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/rtp/rtp_parser_unittest.cc
diff --git a/media/cast/net/rtp/rtp_parser_unittest.cc b/media/cast/net/rtp/rtp_parser_unittest.cc
index 4b72a6bdd850f55c9b909ac0f40e7bc7877ad182..d8ac1cc833619df6553a506e9801cf6d2f521c87 100644
--- a/media/cast/net/rtp/rtp_parser_unittest.cc
+++ b/media/cast/net/rtp/rtp_parser_unittest.cc
@@ -32,7 +32,7 @@ class RtpParserTest : public ::testing::Test {
packet_builder_.SetMarkerBit(true); // Only one packet.
cast_header_.sender_ssrc = kTestSsrc;
cast_header_.sequence_number = kTestSeqNum;
- cast_header_.rtp_timestamp = kTestTimestamp;
+ cast_header_.rtp_timestamp = RtpTimeTicks().Expand(kTestTimestamp);
cast_header_.payload_type = kTestPayloadType;
cast_header_.marker = true;
}
« no previous file with comments | « media/cast/net/rtp/rtp_parser.cc ('k') | media/cast/receiver/cast_receiver_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698