| Index: third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
|
| index 0ec8f7ec34987da8aaab6e01ae342fb166fa9fd7..7a49494ef6c2af275dd25214a3322bc09963df64 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
|
| @@ -6,6 +6,7 @@
|
| #define IIRFilterNode_h
|
|
|
| #include "core/dom/DOMTypedArray.h"
|
| +#include "core/dom/NotShared.h"
|
| #include "modules/webaudio/AudioNode.h"
|
| #include "modules/webaudio/IIRProcessor.h"
|
|
|
| @@ -32,9 +33,9 @@ class IIRFilterNode : public AudioNode {
|
|
|
| // 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 DOMFloat32Array* frequency_hz,
|
| - DOMFloat32Array* mag_response,
|
| - DOMFloat32Array* phase_response,
|
| + void getFrequencyResponse(NotShared<const DOMFloat32Array> frequency_hz,
|
| + NotShared<DOMFloat32Array> mag_response,
|
| + NotShared<DOMFloat32Array> phase_response,
|
| ExceptionState&);
|
|
|
| private:
|
|
|