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

Unified Diff: media/filters/audio_renderer_impl.h

Issue 407583002: Fold AudioRenderer::Stop() into the dtor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed Created 6 years, 5 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/filters/audio_renderer_impl.h
diff --git a/media/filters/audio_renderer_impl.h b/media/filters/audio_renderer_impl.h
index 6986562f22f6318b4a0109fb287ac86b093c080d..8eba357320cded1852d6386dc0bc7a1b2ce6ded6 100644
--- a/media/filters/audio_renderer_impl.h
+++ b/media/filters/audio_renderer_impl.h
@@ -77,7 +77,6 @@ class MEDIA_EXPORT AudioRendererImpl
virtual void StopRendering() OVERRIDE;
virtual void SetMediaTime(base::TimeDelta time) OVERRIDE;
virtual void Flush(const base::Closure& callback) OVERRIDE;
- virtual void Stop(const base::Closure& callback) OVERRIDE;
virtual void SetPlaybackRate(float rate) OVERRIDE;
virtual void StartPlaying() OVERRIDE;
virtual void SetVolume(float volume) OVERRIDE;
@@ -107,8 +106,7 @@ class MEDIA_EXPORT AudioRendererImpl
kInitializing,
kFlushing,
kFlushed,
- kPlaying,
- kStopped,
+ kPlaying
};
// Callback from the audio decoder delivering decoded audio samples.

Powered by Google App Engine
This is Rietveld 408576698