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

Unified Diff: media/audio/pulse/pulse_output.cc

Issue 10184011: Remove unused parameter "stream" from all variants of OnMoreData(). (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 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 | « media/audio/mac/audio_output_mac_unittest.cc ('k') | media/audio/simple_sources.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/pulse/pulse_output.cc
===================================================================
--- media/audio/pulse/pulse_output.cc (revision 133451)
+++ media/audio/pulse/pulse_output.cc (working copy)
@@ -424,7 +424,7 @@
uint32 PulseAudioOutputStream::RunDataCallback(
uint8* dest, uint32 max_size, AudioBuffersState buffers_state) {
if (source_callback_)
- return source_callback_->OnMoreData(this, dest, max_size, buffers_state);
+ return source_callback_->OnMoreData(dest, max_size, buffers_state);
return 0;
}
« no previous file with comments | « media/audio/mac/audio_output_mac_unittest.cc ('k') | media/audio/simple_sources.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698