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

Unified Diff: media/audio/mac/audio_auhal_mac_unittest.cc

Issue 290003002: Remove OnMoreIOData() (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 7 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: media/audio/mac/audio_auhal_mac_unittest.cc
diff --git a/media/audio/mac/audio_auhal_mac_unittest.cc b/media/audio/mac/audio_auhal_mac_unittest.cc
index fd0ffffbdfd16db50cce77fb14d2532a13e629d1..5f1092192d13ff116984e1414c090b77a240e209 100644
--- a/media/audio/mac/audio_auhal_mac_unittest.cc
+++ b/media/audio/mac/audio_auhal_mac_unittest.cc
@@ -93,7 +93,7 @@ TEST_F(AUHALStreamTest, CreateOpenStartStopClose) {
// Wait for the first data callback from the OS.
base::WaitableEvent event(false, false);
- EXPECT_CALL(source_, OnMoreIOData(_, _, _))
+ EXPECT_CALL(source_, OnMoreData(_, _))
.WillOnce(DoAll(ZeroBuffer(), SignalEvent(&event), Return(0)));
EXPECT_CALL(source_, OnError(_)).Times(0);
stream->Start(&source_);

Powered by Google App Engine
This is Rietveld 408576698