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

Unified Diff: third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: 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 b25f0581db935babe1b27b1b2406f3c5f049ca17..17ca41838bdb043716b899bb8e9e0db2212f0922 100644
--- a/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/IIRFilterNode.h
@@ -11,13 +11,13 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class IIRFilterNode : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static IIRFilterNode* create(AbstractAudioContext& context, float sampleRate, const Vector<double> feedforward, const Vector<double> feedback)
+ static IIRFilterNode* create(BaseAudioContext& context, float sampleRate, const Vector<double> feedforward, const Vector<double> feedback)
{
return new IIRFilterNode(context, sampleRate, feedforward, feedback);
}
@@ -28,7 +28,7 @@ public:
void getFrequencyResponse(const DOMFloat32Array* frequencyHz, DOMFloat32Array* magResponse, DOMFloat32Array* phaseResponse, ExceptionState&);
private:
- IIRFilterNode(AbstractAudioContext&, float sampleRate, const Vector<double> denominator, const Vector<double> numerator);
+ IIRFilterNode(BaseAudioContext&, float sampleRate, const Vector<double> denominator, const Vector<double> numerator);
IIRProcessor* iirProcessor() const;
};

Powered by Google App Engine
This is Rietveld 408576698