Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 class JavaScriptAudioNode extends AudioNode native "*JavaScriptAudioNode" { | 2 class JavaScriptAudioNode extends AudioNode native "*JavaScriptAudioNode" { |
| 3 | 3 |
| 4 int bufferSize; | 4 int bufferSize; |
| 5 | |
| 6 // From EventTarget | |
| 7 | |
| 8 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; | |
| 9 | |
| 10 bool dispatchEvent(Event event) native; | |
| 11 | |
| 12 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; | |
| 5 } | 13 } |
| OLD | NEW |