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

Unified Diff: webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc

Issue 2453243003: Remove voe::Channel::StopReceive() and associated logic. (Closed)
Patch Set: comment Created 4 years, 2 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
« no previous file with comments | « webrtc/voice_engine/include/voe_base.h ('k') | webrtc/voice_engine/test/auto_test/standard/dtmf_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc
diff --git a/webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc b/webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc
index abcb2a60a908ead9adfe495b91e012ed3994fd54..34e2bb0fbdf1213c0a7682c7e05193500939e4f7 100644
--- a/webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc
+++ b/webrtc/voice_engine/test/auto_test/fixtures/before_streaming_fixture.cc
@@ -47,11 +47,9 @@ void BeforeStreamingFixture::RestartFakeMicrophone() {
void BeforeStreamingFixture::PausePlaying() {
EXPECT_EQ(0, voe_base_->StopSend(channel_));
EXPECT_EQ(0, voe_base_->StopPlayout(channel_));
- EXPECT_EQ(0, voe_base_->StopReceive(channel_));
}
void BeforeStreamingFixture::ResumePlaying() {
- EXPECT_EQ(0, voe_base_->StartReceive(channel_));
EXPECT_EQ(0, voe_base_->StartPlayout(channel_));
EXPECT_EQ(0, voe_base_->StartSend(channel_));
}
« no previous file with comments | « webrtc/voice_engine/include/voe_base.h ('k') | webrtc/voice_engine/test/auto_test/standard/dtmf_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698