| OLD | NEW |
| 1 library dart.dom.web_audio; | 1 library dart.dom.web_audio; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:html'; | 5 import 'dart:html'; |
| 6 import 'dart:html_common'; | 6 import 'dart:html_common'; |
| 7 import 'dart:_js_helper' show Creates, Returns, convertDartClosureToJS; | 7 import 'dart:_js_helper' show Creates, Returns, convertDartClosureToJS; |
| 8 import 'dart:_foreign_helper' show JS; | 8 import 'dart:_foreign_helper' show JS; |
| 9 // DO NOT EDIT - unless you are editing documentation as per: | 9 // DO NOT EDIT - unless you are editing documentation as per: |
| 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 } | 312 } |
| 313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 313 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 314 // for details. All rights reserved. Use of this source code is governed by a | 314 // for details. All rights reserved. Use of this source code is governed by a |
| 315 // BSD-style license that can be found in the LICENSE file. | 315 // BSD-style license that can be found in the LICENSE file. |
| 316 | 316 |
| 317 | 317 |
| 318 @DocsEditable | 318 @DocsEditable |
| 319 @DomName('AudioDestinationNode') | 319 @DomName('AudioDestinationNode') |
| 320 class AudioDestinationNode extends AudioNode native "*AudioDestinationNode" { | 320 class AudioDestinationNode extends AudioNode native "*AudioDestinationNode" { |
| 321 | 321 |
| 322 @DomName('AudioDestinationNode.numberOfChannels') | 322 @DomName('AudioDestinationNode.maxChannelCount') |
| 323 @DocsEditable | 323 @DocsEditable |
| 324 final int numberOfChannels; | 324 final int maxChannelCount; |
| 325 } | 325 } |
| 326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 326 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 327 // for details. All rights reserved. Use of this source code is governed by a | 327 // for details. All rights reserved. Use of this source code is governed by a |
| 328 // BSD-style license that can be found in the LICENSE file. | 328 // BSD-style license that can be found in the LICENSE file. |
| 329 | 329 |
| 330 | 330 |
| 331 @DocsEditable | 331 @DocsEditable |
| 332 @DomName('AudioGain') | 332 @DomName('AudioGain') |
| 333 class AudioGain extends AudioParam native "*AudioGain" { | 333 class AudioGain extends AudioParam native "*AudioGain" { |
| 334 } | 334 } |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 } | 878 } |
| 879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 879 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 880 // for details. All rights reserved. Use of this source code is governed by a | 880 // for details. All rights reserved. Use of this source code is governed by a |
| 881 // BSD-style license that can be found in the LICENSE file. | 881 // BSD-style license that can be found in the LICENSE file. |
| 882 | 882 |
| 883 | 883 |
| 884 @DocsEditable | 884 @DocsEditable |
| 885 @DomName('WaveTable') | 885 @DomName('WaveTable') |
| 886 class WaveTable native "*WaveTable" { | 886 class WaveTable native "*WaveTable" { |
| 887 } | 887 } |
| OLD | NEW |