| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 interface ImageBitmapFactories {}; | 341 interface ImageBitmapFactories {}; |
| 342 | 342 |
| 343 // See https://chromiumcodereview.appspot.com/15901002 for the V8 implementation
of | 343 // See https://chromiumcodereview.appspot.com/15901002 for the V8 implementation
of |
| 344 // TextEncoder/TextDecoder | 344 // TextEncoder/TextDecoder |
| 345 [Suppressed] | 345 [Suppressed] |
| 346 interface TextEncoder {}; | 346 interface TextEncoder {}; |
| 347 | 347 |
| 348 [Suppressed] | 348 [Suppressed] |
| 349 interface TextDecoder {}; | 349 interface TextDecoder {}; |
| 350 | 350 |
| 351 // TODO(jacobr): renable these as part of fixing dartbug.com/12537 | |
| 352 // We need to apply changes analogous to https://chromiumcodereview.appspot.com/
21274004 | |
| 353 // to the Dart bindings so that we can reenable NodeIterator and TreeWalker | |
| 354 [Suppressed] | |
| 355 interface NodeIterator {}; | |
| 356 | |
| 357 [Suppressed] | |
| 358 interface TreeWalker {}; | |
| 359 | |
| 360 [Supplemental] | 351 [Supplemental] |
| 361 interface Window : EventTarget {}; | 352 interface Window : EventTarget {}; |
| 362 | 353 |
| OLD | NEW |