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

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

Issue 284863002: Add type maps from blink name to html name (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use implementation name Created 6 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/svg/dartium/svg_dartium.dart ('k') | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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:_internal' hide deprecated; 5 import 'dart:_internal' hide deprecated;
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 import 'dart:typed_data'; 9 import 'dart:typed_data';
10 import 'dart:_blink' as _blink; 10 import 'dart:_blink' as _blink;
11 // DO NOT EDIT 11 // DO NOT EDIT
12 // Auto-generated dart:audio library. 12 // Auto-generated dart:audio library.
13 13
14 14
15 15
16 16
17 // FIXME: Can we make this private?
18 const web_audioBlinkMap = const {
19 'AnalyserNode': AnalyserNode,
20 'AudioBuffer': AudioBuffer,
21 'AudioBufferSourceNode': AudioBufferSourceNode,
22 'AudioContext': AudioContext,
23 'AudioDestinationNode': AudioDestinationNode,
24 'AudioListener': AudioListener,
25 'AudioNode': AudioNode,
26 'AudioParam': AudioParam,
27 'AudioProcessingEvent': AudioProcessingEvent,
28 'AudioSourceNode': AudioSourceNode,
29 'BiquadFilterNode': BiquadFilterNode,
30 'ChannelMergerNode': ChannelMergerNode,
31 'ChannelSplitterNode': ChannelSplitterNode,
32 'ConvolverNode': ConvolverNode,
33 'DelayNode': DelayNode,
34 'DynamicsCompressorNode': DynamicsCompressorNode,
35 'GainNode': GainNode,
36 'MediaElementAudioSourceNode': MediaElementAudioSourceNode,
37 'MediaStreamAudioDestinationNode': MediaStreamAudioDestinationNode,
38 'MediaStreamAudioSourceNode': MediaStreamAudioSourceNode,
39 'OfflineAudioCompletionEvent': OfflineAudioCompletionEvent,
40 'OfflineAudioContext': OfflineAudioContext,
41 'OscillatorNode': OscillatorNode,
42 'PannerNode': PannerNode,
43 'PeriodicWave': PeriodicWave,
44 'ScriptProcessorNode': ScriptProcessorNode,
45 'WaveShaperNode': WaveShaperNode,
46
47 };
17 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 48 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18 // for details. All rights reserved. Use of this source code is governed by a 49 // for details. All rights reserved. Use of this source code is governed by a
19 // BSD-style license that can be found in the LICENSE file. 50 // BSD-style license that can be found in the LICENSE file.
20 51
21 // WARNING: Do not edit - generated code. 52 // WARNING: Do not edit - generated code.
22 53
23 54
24 @DocsEditable() 55 @DocsEditable()
25 @DomName('AnalyserNode') 56 @DomName('AnalyserNode')
26 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Analyse rNode 57 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#Analyse rNode
(...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 1280
1250 @DomName('WaveShaperNode.oversample') 1281 @DomName('WaveShaperNode.oversample')
1251 @DocsEditable() 1282 @DocsEditable()
1252 String get oversample => _blink.Native_WaveShaperNode_oversample_Getter(this); 1283 String get oversample => _blink.Native_WaveShaperNode_oversample_Getter(this);
1253 1284
1254 @DomName('WaveShaperNode.oversample') 1285 @DomName('WaveShaperNode.oversample')
1255 @DocsEditable() 1286 @DocsEditable()
1256 void set oversample(String value) => _blink.Native_WaveShaperNode_oversample_S etter(this, value); 1287 void set oversample(String value) => _blink.Native_WaveShaperNode_oversample_S etter(this, value);
1257 1288
1258 } 1289 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dartium/svg_dartium.dart ('k') | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698