OLD | NEW |
1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
2 | 2 |
3 [DartSupplemental, | 3 [DartSupplemental, |
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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 [Default=Undefined] optional DOMString med
ia); | 403 [Default=Undefined] optional DOMString med
ia); |
404 }; | 404 }; |
405 | 405 |
406 [DartSupplemental] | 406 [DartSupplemental] |
407 interface SVGSVGElement { | 407 interface SVGSVGElement { |
408 [DartSuppress] attribute DOMString contentStyleType; | 408 [DartSuppress] attribute DOMString contentStyleType; |
409 [DartSuppress] attribute DOMString contentScriptType; | 409 [DartSuppress] attribute DOMString contentScriptType; |
410 }; | 410 }; |
411 | 411 |
412 [DartSupplemental] | 412 [DartSupplemental] |
413 interface WorkerGlobalScope { | |
414 [DartSuppress] readonly attribute NotificationCenter webkitNotifications; | |
415 }; | |
416 | |
417 [DartSupplemental] | |
418 interface AudioBuffer { | 413 interface AudioBuffer { |
419 [DartSuppress] attribute float gain; | 414 [DartSuppress] attribute float gain; |
420 }; | 415 }; |
421 | 416 |
422 [DartSupplemental] | 417 [DartSupplemental] |
423 interface WorkerCrypto { | 418 interface WorkerCrypto { |
424 [DartSuppress] ArrayBufferView getRandomValues(ArrayBufferView array); | 419 [DartSuppress] ArrayBufferView getRandomValues(ArrayBufferView array); |
425 }; | 420 }; |
426 | 421 |
427 [DartSupplemental] | 422 [DartSupplemental] |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 // is Uint8Array or sequence<unsigned long>. For now suppress | 455 // is Uint8Array or sequence<unsigned long>. For now suppress |
461 // the new operation. Vijay suggestion, and I think this makes | 456 // the new operation. Vijay suggestion, and I think this makes |
462 // sense, change dart:html to have a send operation that takes | 457 // sense, change dart:html to have a send operation that takes |
463 // a List<int> and have custom handler to call the correct | 458 // a List<int> and have custom handler to call the correct |
464 // method. The dart:blink library needs to do something else | 459 // method. The dart:blink library needs to do something else |
465 // postfix the name with send_sequence (?). | 460 // postfix the name with send_sequence (?). |
466 [DartSuppress] void send(sequence<unsigned long> data, optional double times
tamp); | 461 [DartSuppress] void send(sequence<unsigned long> data, optional double times
tamp); |
467 }; | 462 }; |
468 | 463 |
469 Element implements GlobalEventHandlers; | 464 Element implements GlobalEventHandlers; |
OLD | NEW |