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

Unified Diff: content/browser/renderer_host/media/audio_renderer_host_unittest.cc

Issue 12611030: Remove unused parameter to OnError() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits + rebase Created 7 years, 9 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: content/browser/renderer_host/media/audio_renderer_host_unittest.cc
diff --git a/content/browser/renderer_host/media/audio_renderer_host_unittest.cc b/content/browser/renderer_host/media/audio_renderer_host_unittest.cc
index eaaadcc4490c1fb18392d8c9b9bbfcf576838f5b..4e9aaaa8a4847dd464bef77b6efd9e5c0214fc15 100644
--- a/content/browser/renderer_host/media/audio_renderer_host_unittest.cc
+++ b/content/browser/renderer_host/media/audio_renderer_host_unittest.cc
@@ -286,7 +286,7 @@ class AudioRendererHostTest : public testing::Test {
EXPECT_CALL(*host_, OnStreamError(kStreamId));
// Simulate an error sent from the audio device.
- host_->OnError(controller, 0);
+ host_->OnError(controller);
SyncWithAudioThread();
// Expect the audio stream record is removed.

Powered by Google App Engine
This is Rietveld 408576698