| 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 1a7f4f3af4a7dfc8e6e3759e2ee0488d0421b1b0..72e5a3c8b5d4d0efbfe2dee49565fddb9781e7bc 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
|
| @@ -13,6 +13,7 @@ namespace blink {
|
|
|
| class BaseAudioContext;
|
| class ExceptionState;
|
| +class IIRFilterOptions;
|
|
|
| class IIRFilterNode : public AudioNode {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -23,6 +24,8 @@ public:
|
| const Vector<double> feedback,
|
| ExceptionState&);
|
|
|
| + static IIRFilterNode* create(BaseAudioContext*, const IIRFilterOptions&, ExceptionState&);
|
| +
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| // Get the magnitude and phase response of the filter at the given
|
|
|