Chromium Code Reviews| Index: lib/html/idl/dart/dart.idl |
| =================================================================== |
| --- lib/html/idl/dart/dart.idl (revision 13673) |
| +++ lib/html/idl/dart/dart.idl (working copy) |
| @@ -391,3 +391,12 @@ |
| [Custom] void handleEvent(in DOMTimeStamp time); |
| }; |
| } |
| + |
| +module audio { |
| + [Supplemental, Callback] |
| + interface AudioBufferCallback { |
| + // Webkit implements this as returning bool, but standard is void. |
| + [Suppressed] boolean handleEvent(in AudioBuffer audioBuffer); |
|
Anton Muhin
2012/10/16 09:41:09
just a thought: do we have use cases when callback
podivilov
2012/10/16 11:45:43
Looks like generated WebKit bindings always ignore
|
| + [Custom] void handleEvent(in AudioBuffer audioBuffer); |
| + }; |
| +} |