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

Unified Diff: media/base/audio_renderer.h

Issue 277123002: Rename AudioRenderer::Play/Pause() to Start/StopRendering(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | media/base/mock_filters.h » ('j') | media/filters/audio_renderer_impl.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_renderer.h
diff --git a/media/base/audio_renderer.h b/media/base/audio_renderer.h
index 36890f6b23c9208e2533d483822bf881053fbdd9..2d7d3e18a2bce90a74353d283df90de8bcb7aca0 100644
--- a/media/base/audio_renderer.h
+++ b/media/base/audio_renderer.h
@@ -49,11 +49,11 @@ class MEDIA_EXPORT AudioRenderer {
// Signal audio playback to start at the current rate. It is expected that
// |time_cb| will eventually start being run with time updates.
- virtual void Play() = 0;
+ virtual void StartRendering() = 0;
// Signal audio playback to stop until further notice. It is expected that
// |time_cb| will no longer be run.
- virtual void Pause() = 0;
+ virtual void StopRendering() = 0;
// Discard any audio data, executing |callback| when completed.
virtual void Flush(const base::Closure& callback) = 0;
« no previous file with comments | « no previous file | media/base/mock_filters.h » ('j') | media/filters/audio_renderer_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698