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

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

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update files to the right GN files. 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/BiquadFilterOptions.idl
diff --git a/blimp/common/switches.cc b/third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl
similarity index 52%
copy from blimp/common/switches.cc
copy to third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl
index 0d74d4461c46548bbf67029a6fc0549226de71bf..ead9e8a6d683c029da9f818c05ffa0c1f22f250f 100644
--- a/blimp/common/switches.cc
+++ b/third_party/WebKit/Source/modules/webaudio/BiquadFilterOptions.idl
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "blimp/common/switches.h"
-
-namespace blimp {
-
-const char kClientAuthTokenPath[] = "blimp-client-token-path";
-
-} // namespace blimp
+dictionary BiquadFilterOptions : AudioNodeOptions {
+ BiquadFilterType type;
+ float Q;
+ float detune;
+ float frequency;
+ float gain;
+};

Powered by Google App Engine
This is Rietveld 408576698