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

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: 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/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 97d09220270f0acbb9f6e79e42559e931189bd76..b0d7d44dae05f8ab5dba32ced9de6b5e68775a4c 100644
--- a/media/cast/net/rtp/rtp_parser_unittest.cc
+++ b/media/cast/net/rtp/rtp_parser_unittest.cc
@@ -29,7 +29,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;
}

Powered by Google App Engine
This is Rietveld 408576698