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

Unified Diff: media/filters/reference_audio_renderer.h

Issue 8201018: Rename media::AudioRendererImpl to media::ReferenceAudioRendererImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: scherkus CR. Created 9 years, 2 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/filters/reference_audio_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/reference_audio_renderer.h
diff --git a/media/filters/audio_renderer_impl.h b/media/filters/reference_audio_renderer.h
similarity index 72%
rename from media/filters/audio_renderer_impl.h
rename to media/filters/reference_audio_renderer.h
index 238f59c45cc1a89bfbaa49c8ecd1f374bb67b88f..0c6bd0480001c26f171ca079ee2e411e73fac0bb 100644
--- a/media/filters/audio_renderer_impl.h
+++ b/media/filters/reference_audio_renderer.h
@@ -2,13 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef MEDIA_FILTERS_AUDIO_RENDERER_IMPL_H_
-#define MEDIA_FILTERS_AUDIO_RENDERER_IMPL_H_
+#ifndef MEDIA_FILTERS_REFERENCE_AUDIO_RENDERER_H_
+#define MEDIA_FILTERS_REFERENCE_AUDIO_RENDERER_H_
-// This is the default implementation of AudioRenderer, which uses the audio
-// interfaces to open an audio device. Although it cannot be used in the
-// sandbox, it serves as a reference implementation and can be used in other
-// applications such as the test player.
+// This is the reference implementation of AudioRenderer, which uses the audio
+// interfaces to open an audio device. It cannot be used in the sandbox, but is
+// used in other applications such as the test player.
//
// Note: THIS IS NOT THE AUDIO RENDERER USED IN CHROME.
//
@@ -24,12 +23,12 @@
namespace media {
-class MEDIA_EXPORT AudioRendererImpl
+class MEDIA_EXPORT ReferenceAudioRenderer
: public AudioRendererBase,
public AudioOutputStream::AudioSourceCallback {
public:
- AudioRendererImpl();
- virtual ~AudioRendererImpl();
+ ReferenceAudioRenderer();
+ virtual ~ReferenceAudioRenderer();
// Filter implementation.
virtual void SetPlaybackRate(float playback_rate);
@@ -55,9 +54,9 @@ class MEDIA_EXPORT AudioRendererImpl
AudioOutputStream* stream_;
int bytes_per_second_;
- DISALLOW_COPY_AND_ASSIGN(AudioRendererImpl);
+ DISALLOW_COPY_AND_ASSIGN(ReferenceAudioRenderer);
};
} // namespace media
-#endif // MEDIA_FILTERS_AUDIO_RENDERER_IMPL_H_
+#endif // MEDIA_FILTERS_REFERENCE_AUDIO_RENDERER_H_
« no previous file with comments | « no previous file | media/filters/reference_audio_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698