Chromium Code Reviews| Index: third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl |
| diff --git a/third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl b/third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..310c1eeef8e76a86b14221f2a1971acfdd88640a |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl |
| @@ -0,0 +1,12 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// See https://webaudio.github.io/web-audio-api/#biquadfilteroptions |
| +dictionary BiquadFilterOptions : AudioNodeOptions { |
| + BiquadFilterType type; |
| + float Q; |
| + float detune; |
| + float frequency; |
| + float gain; |
| +}; |