| Index: third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
|
| index 40e648e0b7b9e7dfd8b6f73ea63347712d607620..45dcc0962dcf7056fcb0896736582c112fd9efd8 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
|
| +++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.idl
|
| @@ -36,19 +36,13 @@ enum OscillatorType {
|
| [
|
| Constructor(BaseAudioContext context, optional OscillatorOptions options),
|
| RaisesException=Constructor,
|
| - ActiveScriptWrappable,
|
| ]
|
| -interface OscillatorNode : AudioSourceNode {
|
| +interface OscillatorNode : AudioScheduledSourceNode {
|
|
|
| [RaisesException=Setter] attribute OscillatorType type;
|
|
|
| readonly attribute AudioParam frequency; // in Hertz
|
| readonly attribute AudioParam detune; // in Cents
|
|
|
| - [RaisesException] void start(optional double when);
|
| - [RaisesException] void stop(optional double when);
|
| -
|
| void setPeriodicWave(PeriodicWave periodicWave);
|
| -
|
| - attribute EventHandler onended;
|
| };
|
|
|