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

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

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and prefix use counter names with WebAudio Created 4 years, 3 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 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

Powered by Google App Engine
This is Rietveld 408576698