Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: sdk/lib/web_audio/dartium/web_audio_dartium.dart

Issue 2872023006: web_audio: rename OfflineAudioContext.suspend (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sdk/lib/web_audio/dart2js/web_audio_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dart2js/web_audio_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698