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

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

Issue 300923003: Modify blink type map to finalize lazily (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerate / merge Created 6 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 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? 17 // FIXME: Can we make this private?
18 const web_audioBlinkMap = const { 18 final web_audioBlinkMap = {
19 'AnalyserNode': AnalyserNode, 19 'AnalyserNode': () => AnalyserNode,
20 'AudioBuffer': AudioBuffer, 20 'AudioBuffer': () => AudioBuffer,
21 'AudioBufferSourceNode': AudioBufferSourceNode, 21 'AudioBufferSourceNode': () => AudioBufferSourceNode,
22 'AudioContext': AudioContext, 22 'AudioContext': () => AudioContext,
23 'AudioDestinationNode': AudioDestinationNode, 23 'AudioDestinationNode': () => AudioDestinationNode,
24 'AudioListener': AudioListener, 24 'AudioListener': () => AudioListener,
25 'AudioNode': AudioNode, 25 'AudioNode': () => AudioNode,
26 'AudioParam': AudioParam, 26 'AudioParam': () => AudioParam,
27 'AudioProcessingEvent': AudioProcessingEvent, 27 'AudioProcessingEvent': () => AudioProcessingEvent,
28 'AudioSourceNode': AudioSourceNode, 28 'AudioSourceNode': () => AudioSourceNode,
29 'BiquadFilterNode': BiquadFilterNode, 29 'BiquadFilterNode': () => BiquadFilterNode,
30 'ChannelMergerNode': ChannelMergerNode, 30 'ChannelMergerNode': () => ChannelMergerNode,
31 'ChannelSplitterNode': ChannelSplitterNode, 31 'ChannelSplitterNode': () => ChannelSplitterNode,
32 'ConvolverNode': ConvolverNode, 32 'ConvolverNode': () => ConvolverNode,
33 'DelayNode': DelayNode, 33 'DelayNode': () => DelayNode,
34 'DynamicsCompressorNode': DynamicsCompressorNode, 34 'DynamicsCompressorNode': () => DynamicsCompressorNode,
35 'GainNode': GainNode, 35 'GainNode': () => GainNode,
36 'MediaElementAudioSourceNode': MediaElementAudioSourceNode, 36 'MediaElementAudioSourceNode': () => MediaElementAudioSourceNode,
37 'MediaStreamAudioDestinationNode': MediaStreamAudioDestinationNode, 37 'MediaStreamAudioDestinationNode': () => MediaStreamAudioDestinationNode,
38 'MediaStreamAudioSourceNode': MediaStreamAudioSourceNode, 38 'MediaStreamAudioSourceNode': () => MediaStreamAudioSourceNode,
39 'OfflineAudioCompletionEvent': OfflineAudioCompletionEvent, 39 'OfflineAudioCompletionEvent': () => OfflineAudioCompletionEvent,
40 'OfflineAudioContext': OfflineAudioContext, 40 'OfflineAudioContext': () => OfflineAudioContext,
41 'OscillatorNode': OscillatorNode, 41 'OscillatorNode': () => OscillatorNode,
42 'PannerNode': PannerNode, 42 'PannerNode': () => PannerNode,
43 'PeriodicWave': PeriodicWave, 43 'PeriodicWave': () => PeriodicWave,
44 'ScriptProcessorNode': ScriptProcessorNode, 44 'ScriptProcessorNode': () => ScriptProcessorNode,
45 'WaveShaperNode': WaveShaperNode, 45 'WaveShaperNode': () => WaveShaperNode,
46 46
47 }; 47 };
48 // 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
49 // 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
50 // BSD-style license that can be found in the LICENSE file. 50 // BSD-style license that can be found in the LICENSE file.
51 51
52 // WARNING: Do not edit - generated code. 52 // WARNING: Do not edit - generated code.
53 53
54 54
55 @DocsEditable() 55 @DocsEditable()
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after
1213 1213
1214 @DomName('WaveShaperNode.oversample') 1214 @DomName('WaveShaperNode.oversample')
1215 @DocsEditable() 1215 @DocsEditable()
1216 String get oversample => _blink.BlinkWaveShaperNode.$oversample_Getter(this); 1216 String get oversample => _blink.BlinkWaveShaperNode.$oversample_Getter(this);
1217 1217
1218 @DomName('WaveShaperNode.oversample') 1218 @DomName('WaveShaperNode.oversample')
1219 @DocsEditable() 1219 @DocsEditable()
1220 void set oversample(String value) => _blink.BlinkWaveShaperNode.$oversample_Se tter(this, value); 1220 void set oversample(String value) => _blink.BlinkWaveShaperNode.$oversample_Se tter(this, value);
1221 1221
1222 } 1222 }
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