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

Unified Diff: Source/modules/webaudio/BiquadFilterNode.h

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Win GPU tests (DOMDataView). Created 6 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
Index: Source/modules/webaudio/BiquadFilterNode.h
diff --git a/Source/modules/webaudio/BiquadFilterNode.h b/Source/modules/webaudio/BiquadFilterNode.h
index c8acb33231ae87e1865ba9e47d0ccc0d4dcf87ba..3dc6c9e33b23156aba3307fe870088cc8a4501e3 100644
--- a/Source/modules/webaudio/BiquadFilterNode.h
+++ b/Source/modules/webaudio/BiquadFilterNode.h
@@ -25,6 +25,7 @@
#ifndef BiquadFilterNode_h
#define BiquadFilterNode_h
+#include "core/dom/DOMTypedArray.h"
#include "modules/webaudio/AudioBasicProcessorNode.h"
#include "modules/webaudio/BiquadProcessor.h"
@@ -62,9 +63,7 @@ public:
// Get the magnitude and phase response of the filter at the given
// set of frequencies (in Hz). The phase response is in radians.
- void getFrequencyResponse(const Float32Array* frequencyHz,
- Float32Array* magResponse,
- Float32Array* phaseResponse);
+ void getFrequencyResponse(const DOMFloat32Array* frequencyHz, DOMFloat32Array* magResponse, DOMFloat32Array* phaseResponse);
private:
BiquadFilterNode(AudioContext*, float sampleRate);

Powered by Google App Engine
This is Rietveld 408576698