Index: third_party/WebKit/Source/modules/webaudio/OscillatorOptions.idl |
diff --git a/blimp/common/switches.cc b/third_party/WebKit/Source/modules/webaudio/OscillatorOptions.idl |
similarity index 52% |
copy from blimp/common/switches.cc |
copy to third_party/WebKit/Source/modules/webaudio/OscillatorOptions.idl |
index 0d74d4461c46548bbf67029a6fc0549226de71bf..62995d8dddd90bcabcac64ea1959ca85a4c3ee48 100644 |
--- a/blimp/common/switches.cc |
+++ b/third_party/WebKit/Source/modules/webaudio/OscillatorOptions.idl |
@@ -2,10 +2,9 @@ |
// 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 OscillatorOptions : AudioNodeOptions { |
+ OscillatorType type; |
+ float detune; |
+ float frequency; |
+ PeriodicWave? periodicWave; |
+}; |