Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
| 2 | 2 |
| 3 [Supplemental, | 3 [Supplemental, |
| 4 Constructor] | 4 Constructor] |
| 5 interface AudioContext { | 5 interface AudioContext { |
| 6 // TODO(ager): Auto-generate this custom method when the info about retaining | 6 // TODO(ager): Auto-generate this custom method when the info about retaining |
| 7 // typed arrays is in the IDL. | 7 // typed arrays is in the IDL. |
| 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); | 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); |
| 9 }; | 9 }; |
| 10 | 10 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 298 [Custom] void send(ArrayBufferView data); | 298 [Custom] void send(ArrayBufferView data); |
| 299 [Custom] void send(Blob data); | 299 [Custom] void send(Blob data); |
| 300 [Custom] void send(Document data); | 300 [Custom] void send(Document data); |
| 301 [Custom] void send([StrictTypeChecking] DOMString data); | 301 [Custom] void send([StrictTypeChecking] DOMString data); |
| 302 [Custom] void send(FormData data); | 302 [Custom] void send(FormData data); |
| 303 }; | 303 }; |
| 304 | 304 |
| 305 [Suppressed] | 305 [Suppressed] |
| 306 interface AbstractView {}; | 306 interface AbstractView {}; |
| 307 | 307 |
| 308 [Suppressed] | |
|
blois
2013/09/25 00:16:22
This should just be an entry in htmlrenamer's supp
| |
| 309 interface XMLHttpRequestProgressEvent {}; | |
| 308 | 310 |
| 309 [Suppressed] | 311 [Suppressed] |
| 310 interface InjectedScriptHost {}; | 312 interface InjectedScriptHost {}; |
| 311 | 313 |
| 312 | 314 |
| 313 [Suppressed] | 315 [Suppressed] |
| 314 interface InspectorFrontendHost {}; | 316 interface InspectorFrontendHost {}; |
| 315 | 317 |
| 316 | 318 |
| 317 [Suppressed] | 319 [Suppressed] |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 344 // TextEncoder/TextDecoder | 346 // TextEncoder/TextDecoder |
| 345 [Suppressed] | 347 [Suppressed] |
| 346 interface TextEncoder {}; | 348 interface TextEncoder {}; |
| 347 | 349 |
| 348 [Suppressed] | 350 [Suppressed] |
| 349 interface TextDecoder {}; | 351 interface TextDecoder {}; |
| 350 | 352 |
| 351 [Supplemental] | 353 [Supplemental] |
| 352 interface Window : EventTarget {}; | 354 interface Window : EventTarget {}; |
| 353 | 355 |
| OLD | NEW |