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

Unified Diff: media/audio/audio_io.h

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/android/opensles_output.cc ('k') | media/audio/audio_low_latency_input_output_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_io.h
===================================================================
--- media/audio/audio_io.h (revision 133451)
+++ media/audio/audio_io.h (working copy)
@@ -65,9 +65,9 @@
// platform and format specific.
// |buffers_state| contains current state of the buffers, and can be used
// by the source to calculate delay.
- virtual uint32 OnMoreData(
- AudioOutputStream* stream, uint8* dest, uint32 max_size,
- AudioBuffersState buffers_state) = 0;
+ virtual uint32 OnMoreData(uint8* dest,
+ uint32 max_size,
+ AudioBuffersState buffers_state) = 0;
// There was an error while playing a buffer. Audio source cannot be
// destroyed yet. No direct action needed by the AudioStream, but it is
« no previous file with comments | « media/audio/android/opensles_output.cc ('k') | media/audio/audio_low_latency_input_output_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698