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 cb3abaf39c8abc342cdf6632d4c78b9521939ad6..fd273fce8804039d9bb3fbcb1eb40eff5dd25c1f 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; |
@@ -174,6 +176,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. |
// |