Index: third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h |
diff --git a/third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h b/third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h |
index 87db0a55bb7cc8a029ad4afe999dcbf12f59cb3c..8ca7f639b7d4d2e12641859c0cd3687148bd2c87 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h |
+++ b/third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h |
@@ -35,6 +35,7 @@ |
#include "modules/webaudio/AsyncAudioDecoder.h" |
#include "modules/webaudio/AudioDestinationNode.h" |
#include "modules/webaudio/DeferredTaskHandler.h" |
+#include "modules/webaudio/IIRFilterNode.h" |
#include "platform/audio/AudioBus.h" |
#include "platform/heap/Handle.h" |
#include "wtf/HashSet.h" |
@@ -63,6 +64,7 @@ class DynamicsCompressorNode; |
class ExceptionState; |
class GainNode; |
class HTMLMediaElement; |
+class IIRFilterNode; |
class MediaElementAudioSourceNode; |
class MediaStreamAudioDestinationNode; |
class MediaStreamAudioSourceNode; |
@@ -177,6 +179,10 @@ public: |
// Resume |
virtual ScriptPromise resumeContext(ScriptState*) = 0; |
+ // IIRFilter |
+ IIRFilterNode* createIIRFilter(Vector<double> feedforwardCoef, Vector<double> feedbackCoef, |
+ ExceptionState&); |
+ |
// When a source node has started processing and needs to be protected, |
// this method tells the context to protect the node. |
// |