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

Unified Diff: media/audio/null_audio_sink.cc

Issue 14234023: Remove unused flush operation from Chromium audio. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: media/audio/null_audio_sink.cc
diff --git a/media/audio/null_audio_sink.cc b/media/audio/null_audio_sink.cc
index 40db453f1579f37d9731ea7c66d6a2a41cde3ee4..aa69c5c016462b4b16b4fd6ab89c2a1762fc06e1 100644
--- a/media/audio/null_audio_sink.cc
+++ b/media/audio/null_audio_sink.cc
@@ -54,7 +54,7 @@ void NullAudioSink::Play() {
playing_ = true;
}
-void NullAudioSink::Pause(bool /* flush */) {
+void NullAudioSink::Pause() {
DCHECK(message_loop_->BelongsToCurrentThread());
if (!playing_)

Powered by Google App Engine
This is Rietveld 408576698