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

Unified Diff: third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.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/BiquadFilterNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.h b/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.h
index 96a56e5177d2d536cc8d5360c8e9e18b649fcf13..aa950601e346d2ebe9bc451339763f48372d1176 100644
--- a/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.h
@@ -33,6 +33,7 @@ namespace blink {
class BaseAudioContext;
class AudioParam;
+class BiquadFilterOptions;
class BiquadFilterNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
@@ -50,6 +51,7 @@ public:
};
static BiquadFilterNode* create(BaseAudioContext&, ExceptionState&);
+ static BiquadFilterNode* create(BaseAudioContext*, const BiquadFilterOptions&, ExceptionState&);
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698