| OLD | NEW |
| 1 /** | 1 /** |
| 2 * High-fidelity audio programming in the browser. | 2 * High-fidelity audio programming in the browser. |
| 3 */ | 3 */ |
| 4 library dart.dom.web_audio; | 4 library dart.dom.web_audio; |
| 5 | 5 |
| 6 import 'dart:async'; | 6 import 'dart:async'; |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 import 'dart:_internal' hide deprecated; | 8 import 'dart:_internal' hide deprecated; |
| 9 import 'dart:html'; | 9 import 'dart:html'; |
| 10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 @Experimental() | 480 @Experimental() |
| 481 @Native("AudioParam") | 481 @Native("AudioParam") |
| 482 class AudioParam extends Interceptor { | 482 class AudioParam extends Interceptor { |
| 483 // To suppress missing implicit constructor warnings. | 483 // To suppress missing implicit constructor warnings. |
| 484 factory AudioParam._() { throw new UnsupportedError("Not supported"); } | 484 factory AudioParam._() { throw new UnsupportedError("Not supported"); } |
| 485 | 485 |
| 486 @DomName('AudioParam.defaultValue') | 486 @DomName('AudioParam.defaultValue') |
| 487 @DocsEditable() | 487 @DocsEditable() |
| 488 final double defaultValue; | 488 final double defaultValue; |
| 489 | 489 |
| 490 @DomName('AudioParam.maxValue') | |
| 491 @DocsEditable() | |
| 492 final double maxValue; | |
| 493 | |
| 494 @DomName('AudioParam.minValue') | |
| 495 @DocsEditable() | |
| 496 final double minValue; | |
| 497 | |
| 498 @DomName('AudioParam.name') | |
| 499 @DocsEditable() | |
| 500 final String name; | |
| 501 | |
| 502 @DomName('AudioParam.units') | |
| 503 @DocsEditable() | |
| 504 final int units; | |
| 505 | |
| 506 @DomName('AudioParam.value') | 490 @DomName('AudioParam.value') |
| 507 @DocsEditable() | 491 @DocsEditable() |
| 508 num value; | 492 num value; |
| 509 | 493 |
| 510 @DomName('AudioParam.cancelScheduledValues') | 494 @DomName('AudioParam.cancelScheduledValues') |
| 511 @DocsEditable() | 495 @DocsEditable() |
| 512 void cancelScheduledValues(num startTime) native; | 496 void cancelScheduledValues(num startTime) native; |
| 513 | 497 |
| 514 @DomName('AudioParam.exponentialRampToValueAtTime') | 498 @DomName('AudioParam.exponentialRampToValueAtTime') |
| 515 @DocsEditable() | 499 @DocsEditable() |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } | 985 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } |
| 1002 | 986 |
| 1003 @DomName('WaveShaperNode.curve') | 987 @DomName('WaveShaperNode.curve') |
| 1004 @DocsEditable() | 988 @DocsEditable() |
| 1005 Float32List curve; | 989 Float32List curve; |
| 1006 | 990 |
| 1007 @DomName('WaveShaperNode.oversample') | 991 @DomName('WaveShaperNode.oversample') |
| 1008 @DocsEditable() | 992 @DocsEditable() |
| 1009 String oversample; | 993 String oversample; |
| 1010 } | 994 } |
| OLD | NEW |