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

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

Issue 1373903003: Unify newapi::RtcpMode and RTCPMethod. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: enum class 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_rtcp.cc
diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
index e1d5e07d1d4dd1e9203be707bc90aeef0a7bc12a..ff5278652f9014016d47d67faa3853827fe96849 100644
--- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
+++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc
@@ -123,8 +123,8 @@ class RtpRtcpRtcpTest : public ::testing::Test {
myRTCPFeedback1->SetModule(module1);
myRTCPFeedback2->SetModule(module2);
- module1->SetRTCPStatus(kRtcpCompound);
- module2->SetRTCPStatus(kRtcpCompound);
+ module1->SetRTCPStatus(RtcpMode::COMPOUND);
+ module2->SetRTCPStatus(RtcpMode::COMPOUND);
module2->SetSSRC(test_ssrc + 1);
module1->SetSSRC(test_ssrc);

Powered by Google App Engine
This is Rietveld 408576698