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

Side by Side Diff: sdk/lib/web_audio/dart2js/web_audio_dart2js.dart

Issue 22859017: one-line doc for audio (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « no previous file | tools/dom/templates/html/dart2js/web_audio_dart2js.darttemplate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /**
2 * High-fidelity audio programming in the browser.
3 */
1 library dart.dom.web_audio; 4 library dart.dom.web_audio;
2 5
3 import 'dart:async'; 6 import 'dart:async';
4 import 'dart:collection'; 7 import 'dart:collection';
5 import 'dart:_collection-dev' hide deprecated; 8 import 'dart:_collection-dev' hide deprecated;
6 import 'dart:html'; 9 import 'dart:html';
7 import 'dart:html_common'; 10 import 'dart:html_common';
8 import 'dart:typed_data'; 11 import 'dart:typed_data';
9 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; 12 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS;
10 import 'dart:_foreign_helper' show JS; 13 import 'dart:_foreign_helper' show JS;
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } 1137 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); }
1135 1138
1136 @DomName('WaveShaperNode.curve') 1139 @DomName('WaveShaperNode.curve')
1137 @DocsEditable() 1140 @DocsEditable()
1138 Float32List curve; 1141 Float32List curve;
1139 1142
1140 @DomName('WaveShaperNode.oversample') 1143 @DomName('WaveShaperNode.oversample')
1141 @DocsEditable() 1144 @DocsEditable()
1142 String oversample; 1145 String oversample;
1143 } 1146 }
OLDNEW
« no previous file with comments | « no previous file | tools/dom/templates/html/dart2js/web_audio_dart2js.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698