| OLD | NEW |
| 1 library web_audio; | 1 library web_audio; |
| 2 | 2 |
| 3 import 'dart:html'; | 3 import 'dart:html'; |
| 4 import 'dart:nativewrappers'; | 4 import 'dart:nativewrappers'; |
| 5 // DO NOT EDIT | 5 // DO NOT EDIT |
| 6 // Auto-generated dart:audio library. | 6 // Auto-generated dart:audio library. |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 | 10 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 int get numberOfChannels native "AudioDestinationNode_numberOfChannels_Getter"
; | 408 int get numberOfChannels native "AudioDestinationNode_numberOfChannels_Getter"
; |
| 409 | 409 |
| 410 } | 410 } |
| 411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 412 // for details. All rights reserved. Use of this source code is governed by a | 412 // for details. All rights reserved. Use of this source code is governed by a |
| 413 // BSD-style license that can be found in the LICENSE file. | 413 // BSD-style license that can be found in the LICENSE file. |
| 414 | 414 |
| 415 // WARNING: Do not edit - generated code. | 415 // WARNING: Do not edit - generated code. |
| 416 | 416 |
| 417 | 417 |
| 418 /// @domName HTMLAudioElement |
| 419 class AudioElement extends MediaElement { |
| 420 |
| 421 factory AudioElement([String src]) { |
| 422 if (!?src) { |
| 423 return _AudioElementFactoryProvider.createAudioElement(); |
| 424 } |
| 425 return _AudioElementFactoryProvider.createAudioElement(src); |
| 426 } |
| 427 AudioElement.internal(): super.internal(); |
| 428 |
| 429 } |
| 430 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 431 // for details. All rights reserved. Use of this source code is governed by a |
| 432 // BSD-style license that can be found in the LICENSE file. |
| 433 |
| 434 // WARNING: Do not edit - generated code. |
| 435 |
| 436 |
| 418 /// @domName AudioGain | 437 /// @domName AudioGain |
| 419 class AudioGain extends AudioParam { | 438 class AudioGain extends AudioParam { |
| 420 AudioGain.internal(): super.internal(); | 439 AudioGain.internal(): super.internal(); |
| 421 | 440 |
| 422 } | 441 } |
| 423 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 424 // for details. All rights reserved. Use of this source code is governed by a | 443 // for details. All rights reserved. Use of this source code is governed by a |
| 425 // BSD-style license that can be found in the LICENSE file. | 444 // BSD-style license that can be found in the LICENSE file. |
| 426 | 445 |
| 427 // WARNING: Do not edit - generated code. | 446 // WARNING: Do not edit - generated code. |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 | 1056 |
| 1038 | 1057 |
| 1039 /** @domName WaveShaperNode.curve */ | 1058 /** @domName WaveShaperNode.curve */ |
| 1040 void set curve(Float32Array value) native "WaveShaperNode_curve_Setter"; | 1059 void set curve(Float32Array value) native "WaveShaperNode_curve_Setter"; |
| 1041 | 1060 |
| 1042 } | 1061 } |
| 1043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1062 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1044 // for details. All rights reserved. Use of this source code is governed by a | 1063 // for details. All rights reserved. Use of this source code is governed by a |
| 1045 // BSD-style license that can be found in the LICENSE file. | 1064 // BSD-style license that can be found in the LICENSE file. |
| 1046 | 1065 |
| 1047 // WARNING: Do not edit - generated code. | |
| 1048 | 1066 |
| 1049 | 1067 class _AudioElementFactoryProvider { |
| 1050 /// @domName WaveTable | 1068 static AudioElement createAudioElement([String src]) native "HTMLAudioElement_
constructor_Callback"; |
| 1051 class WaveTable extends NativeFieldWrapperClass1 { | |
| 1052 WaveTable.internal(); | |
| 1053 | |
| 1054 } | 1069 } |
| OLD | NEW |