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

Unified Diff: webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc

Issue 1373903003: Unify newapi::RtcpMode and RTCPMethod. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: ehm, compile the code Created 5 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/test/testAPI/test_api.cc
diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
index f75113afe4a839cae4ee18b6b3e147de810d7b89..361f45dbabea4ffb8dd6918d1d3313b101be12cb 100644
--- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
+++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc
@@ -139,9 +139,9 @@ TEST_F(RtpRtcpAPITest, SSRC) {
}
TEST_F(RtpRtcpAPITest, RTCP) {
- EXPECT_EQ(kRtcpOff, module_->RTCP());
- module_->SetRTCPStatus(kRtcpCompound);
- EXPECT_EQ(kRtcpCompound, module_->RTCP());
+ EXPECT_EQ(RtcpMode::kOff, module_->RTCP());
+ module_->SetRTCPStatus(RtcpMode::kCompound);
+ EXPECT_EQ(RtcpMode::kCompound, module_->RTCP());
EXPECT_EQ(0, module_->SetCNAME("john.doe@test.test"));

Powered by Google App Engine
This is Rietveld 408576698