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

Unified Diff: content/renderer/media/renderer_webaudiodevice_impl.h

Issue 11827040: Update RendererWebKitPlatformSupportImpl::createAudioDevice() to handle |input_channels| (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | content/renderer/media/renderer_webaudiodevice_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/renderer_webaudiodevice_impl.h
===================================================================
--- content/renderer/media/renderer_webaudiodevice_impl.h (revision 175940)
+++ content/renderer/media/renderer_webaudiodevice_impl.h (working copy)
@@ -21,6 +21,7 @@
public media::AudioRendererSink::RenderCallback {
public:
RendererWebAudioDeviceImpl(const media::AudioParameters& params,
+ unsigned input_channels,
DaleCurtis 2013/01/10 02:09:49 Hmm, should this be size_t? I'm not sure at which
jamesr 2013/01/10 03:37:15 This is chromium code, so it should follow the chr
WebKit::WebAudioDevice::RenderCallback* callback);
virtual ~RendererWebAudioDeviceImpl();
@@ -41,6 +42,7 @@
private:
const media::AudioParameters params_;
+ unsigned input_channels_;
// Weak reference to the callback into WebKit code.
WebKit::WebAudioDevice::RenderCallback* const client_callback_;
« no previous file with comments | « no previous file | content/renderer/media/renderer_webaudiodevice_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698