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

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

Issue 18277003: "Reverting 24655" (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 5d3730d06f460ab3b4d5e7e40f4bc1d029e60c03..1aaf7e99725dd092271360c5399fea0249c800f9 100644
--- a/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart
+++ b/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart
@@ -255,12 +255,7 @@ class AudioContext extends EventTarget native "AudioContext" {
@DomName('AudioContext.createBuffer')
@DocsEditable()
- AudioBuffer createBuffer(int numberOfChannels, int numberOfFrames, num sampleRate) native;
-
- @JSName('createBuffer')
- @DomName('AudioContext.createBuffer')
- @DocsEditable()
- AudioBuffer createBufferFromBuffer(ByteBuffer buffer, bool mixToMono) native;
+ AudioBuffer createBuffer(buffer_OR_numberOfChannels, mixToMono_OR_numberOfFrames, [num sampleRate]) native;
@DomName('AudioContext.createBufferSource')
@DocsEditable()
@@ -418,6 +413,7 @@ 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()
@@ -454,10 +450,9 @@ class AudioNode extends EventTarget native "AudioNode" {
@DocsEditable()
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native;
- @JSName('connect')
@DomName('AudioNode.connect')
@DocsEditable()
- void $dom_connect(destination, int output, [int input]) native;
+ void connect(destination, int output, [int input]) native;
@DomName('AudioNode.disconnect')
@DocsEditable()
@@ -471,14 +466,6 @@ 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