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'; | 8 import 'dart:_internal'; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1390 @DomName('OfflineAudioContext.startRendering') | 1390 @DomName('OfflineAudioContext.startRendering') |
1391 @DocsEditable() | 1391 @DocsEditable() |
1392 @Experimental() // untriaged | 1392 @Experimental() // untriaged |
1393 Future startRendering() => | 1393 Future startRendering() => |
1394 convertNativePromiseToDartFuture(_blink.BlinkOfflineAudioContext.instance | 1394 convertNativePromiseToDartFuture(_blink.BlinkOfflineAudioContext.instance |
1395 .startRendering_Callback_0_(this)); | 1395 .startRendering_Callback_0_(this)); |
1396 | 1396 |
1397 @DomName('OfflineAudioContext.suspend') | 1397 @DomName('OfflineAudioContext.suspend') |
1398 @DocsEditable() | 1398 @DocsEditable() |
1399 @Experimental() // untriaged | 1399 @Experimental() // untriaged |
1400 Future suspend(num suspendTime) => | 1400 Future suspendFor(num suspendTime) => |
1401 convertNativePromiseToDartFuture(_blink.BlinkOfflineAudioContext.instance | 1401 convertNativePromiseToDartFuture(_blink.BlinkOfflineAudioContext.instance |
1402 .suspend_Callback_1_(this, suspendTime)); | 1402 .suspend_Callback_1_(this, suspendTime)); |
1403 } | 1403 } |
1404 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1404 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1405 // for details. All rights reserved. Use of this source code is governed by a | 1405 // for details. All rights reserved. Use of this source code is governed by a |
1406 // BSD-style license that can be found in the LICENSE file. | 1406 // BSD-style license that can be found in the LICENSE file. |
1407 | 1407 |
1408 // WARNING: Do not edit - generated code. | 1408 // WARNING: Do not edit - generated code. |
1409 | 1409 |
1410 @DocsEditable() | 1410 @DocsEditable() |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1744 @DomName('WaveShaperNode.oversample') | 1744 @DomName('WaveShaperNode.oversample') |
1745 @DocsEditable() | 1745 @DocsEditable() |
1746 String get oversample => | 1746 String get oversample => |
1747 _blink.BlinkWaveShaperNode.instance.oversample_Getter_(this); | 1747 _blink.BlinkWaveShaperNode.instance.oversample_Getter_(this); |
1748 | 1748 |
1749 @DomName('WaveShaperNode.oversample') | 1749 @DomName('WaveShaperNode.oversample') |
1750 @DocsEditable() | 1750 @DocsEditable() |
1751 set oversample(String value) => | 1751 set oversample(String value) => |
1752 _blink.BlinkWaveShaperNode.instance.oversample_Setter_(this, value); | 1752 _blink.BlinkWaveShaperNode.instance.oversample_Setter_(this, value); |
1753 } | 1753 } |
OLD | NEW |