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

Unified Diff: third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl

Issue 2393783003: Mark required dictionary members as required (Closed)
Patch Set: Created 4 years, 2 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/IIRFilterOptions.idl
diff --git a/third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl b/third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl
index 8e66304654290589f9899a51a847e75770138080..b42d86dc30060fcb6e3efff7a93d1b26c13f2ecd 100644
--- a/third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl
+++ b/third_party/WebKit/Source/modules/webaudio/IIRFilterOptions.idl
@@ -4,6 +4,6 @@
// See https://webaudio.github.io/web-audio-api/#iirfilteroptions
dictionary IIRFilterOptions : AudioNodeOptions {
- sequence<double> feedforward;
- sequence<double> feedback;
-};
+ required sequence<double> feedforward;
+ required sequence<double> feedback;
+};

Powered by Google App Engine
This is Rietveld 408576698