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

Unified Diff: content/renderer/media/audio_renderer_mixer_manager_unittest.cc

Issue 10834033: Move AudioDevice and AudioInputDevice to media. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments and fixed a few lint issues Created 8 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: content/renderer/media/audio_renderer_mixer_manager_unittest.cc
===================================================================
--- content/renderer/media/audio_renderer_mixer_manager_unittest.cc (revision 148738)
+++ content/renderer/media/audio_renderer_mixer_manager_unittest.cc (working copy)
@@ -34,7 +34,7 @@
return sink;
}
- virtual AudioInputDevice* CreateInputDevice() OVERRIDE {
+ virtual media::AudioInputDevice* CreateInputDevice() OVERRIDE {
ADD_FAILURE();
return NULL;
}
@@ -45,8 +45,8 @@
class AudioRendererMixerManagerTest : public testing::Test {
public:
AudioRendererMixerManagerTest() {
- // We don't want to deal with instantiating a real AudioDevice since it's
- // not important to our testing, so use a mock AudioDeviceFactory.
+ // We don't want to deal with instantiating a real AudioOutputDevice since
+ // it's not important to our testing, so use a mock AudioDeviceFactory.
mock_sink_factory_.reset(new MockAudioRenderSinkFactory());
manager_.reset(new AudioRendererMixerManager(kSampleRate, kBufferSize));
}
« no previous file with comments | « content/renderer/media/audio_renderer_mixer_manager.h ('k') | content/renderer/media/render_audiosourceprovider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698