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

Unified Diff: sdk/lib/web_audio/dart2js/web_audio_dart2js.dart

Issue 18577002: Reapply expanding overloaded functions into separate functions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/web_audio/dart2js/web_audio_dart2js.dart
diff --git a/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart b/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart
index 1aaf7e99725dd092271360c5399fea0249c800f9..5d3730d06f460ab3b4d5e7e40f4bc1d029e60c03 100644
--- a/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart
+++ b/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart
@@ -255,7 +255,12 @@ class AudioContext extends EventTarget native "AudioContext" {
@DomName('AudioContext.createBuffer')
@DocsEditable()
- AudioBuffer createBuffer(buffer_OR_numberOfChannels, mixToMono_OR_numberOfFrames, [num sampleRate]) native;
+ AudioBuffer createBuffer(int numberOfChannels, int numberOfFrames, num sampleRate) native;
+
+ @JSName('createBuffer')
+ @DomName('AudioContext.createBuffer')
+ @DocsEditable()
+ AudioBuffer createBufferFromBuffer(ByteBuffer buffer, bool mixToMono) native;
@DomName('AudioContext.createBufferSource')
@DocsEditable()
@@ -413,7 +418,6 @@ class AudioListener extends Interceptor native "AudioListener" {
// BSD-style license that can be found in the LICENSE file.
-@DocsEditable()
@DomName('AudioNode')
// https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#AudioNode-section
@Experimental()
@@ -450,9 +454,10 @@ class AudioNode extends EventTarget native "AudioNode" {
@DocsEditable()
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native;
+ @JSName('connect')
@DomName('AudioNode.connect')
@DocsEditable()
- void connect(destination, int output, [int input]) native;
+ void $dom_connect(destination, int output, [int input]) native;
@DomName('AudioNode.disconnect')
@DocsEditable()
@@ -466,6 +471,14 @@ class AudioNode extends EventTarget native "AudioNode" {
@DomName('AudioNode.removeEventListener')
@DocsEditable()
void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native;
+
+ @DomName('AudioNode.connect')
+ void connectNode(AudioNode destination, [int output = 0, int input = 0]) =>
+ $dom_connect(destination, output, input);
+
+ @DomName('AudioNode.connect')
+ void connectParam(AudioParam destination, [int output = 0]) =>
+ $dom_connect(destination, output);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698