Chromium Code Reviews| Index: Source/modules/webaudio/OscillatorNode.idl |
| diff --git a/Source/modules/webaudio/OscillatorNode.idl b/Source/modules/webaudio/OscillatorNode.idl |
| index 949eac60c32695668c17a31b39d59360174a820f..e203419425b843b5f667c0c124a65319edc22b36 100644 |
| --- a/Source/modules/webaudio/OscillatorNode.idl |
| +++ b/Source/modules/webaudio/OscillatorNode.idl |
| @@ -47,8 +47,8 @@ |
| readonly attribute AudioParam frequency; // in Hertz |
| readonly attribute AudioParam detune; // in Cents |
| - void start(double when); |
| - void stop(double when); |
| + void start(optional double when); |
| + void stop(optional double when); |
|
Ken Russell (switch to Gerrit)
2013/10/11 20:19:06
It looks to me like the "optional" argument needs
Raymond Toy (Google)
2013/10/11 20:51:29
Yes. I've raised this issue. See https://github.c
|
| void noteOn(double when); |
| void noteOff(double when); |