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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc

Issue 2370313002: Reland of Unify rtcp packet setters (Closed)
Patch Set: Fix breaking mistype Created 4 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
Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc
index 6536e061869e55758e8d0d90d0a729c9b8b52fdc..6dff06fd3a066d169bc39293eb32ad64a8eb3314 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr_unittest.cc
@@ -30,7 +30,7 @@ static_assert(
TEST(RtcpPacketRrtrTest, Create) {
uint8_t buffer[Rrtr::kLength];
Rrtr rrtr;
- rrtr.WithNtp(NtpTime(kNtpSec, kNtpFrac));
+ rrtr.SetNtp(NtpTime(kNtpSec, kNtpFrac));
rrtr.Create(buffer);
EXPECT_EQ(0, memcmp(buffer, kBlock, kBlockSizeBytes));
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h ('k') | webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698