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

Unified Diff: media/base/mock_audio_renderer_sink.cc

Issue 10698066: Switch to pcm_low_latency and enable resampling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments! 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
« no previous file with comments | « media/base/mock_audio_renderer_sink.h ('k') | media/filters/audio_renderer_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mock_audio_renderer_sink.cc
diff --git a/media/base/mock_audio_renderer_sink.cc b/media/base/mock_audio_renderer_sink.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b21eb19ba13d90a524c44fc22fb494141b2f29cc
--- /dev/null
+++ b/media/base/mock_audio_renderer_sink.cc
@@ -0,0 +1,17 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/base/mock_audio_renderer_sink.h"
+
+namespace media {
+
+MockAudioRendererSink::MockAudioRendererSink() {}
+MockAudioRendererSink::~MockAudioRendererSink() {}
+
+void MockAudioRendererSink::Initialize(const AudioParameters& params,
+ RenderCallback* renderer) {
+ callback_ = renderer;
+}
+
+} // namespace media
« no previous file with comments | « media/base/mock_audio_renderer_sink.h ('k') | media/filters/audio_renderer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698