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

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

Issue 140543002: Revert "Redo "Make dart2js typed_data implementation classes private"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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
OLDNEW
1 /** 1 /**
2 * High-fidelity audio programming in the browser. 2 * High-fidelity audio programming in the browser.
3 */ 3 */
4 library dart.dom.web_audio; 4 library dart.dom.web_audio;
5 5
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:_collection-dev' hide deprecated; 8 import 'dart:_collection-dev' hide deprecated;
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:html_common'; 10 import 'dart:html_common';
11 import 'dart:_native_typed_data'; 11 import 'dart:typed_data';
12 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; 12 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS;
13 import 'dart:_foreign_helper' show JS; 13 import 'dart:_foreign_helper' show JS;
14 import 'dart:_interceptors' show Interceptor; 14 import 'dart:_interceptors' show Interceptor;
15 // DO NOT EDIT - unless you are editing documentation as per: 15 // DO NOT EDIT - unless you are editing documentation as per:
16 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 16 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
17 // Auto-generated dart:audio library. 17 // Auto-generated dart:audio library.
18 18
19 19
20 20
21 21
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } 1092 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); }
1093 1093
1094 @DomName('WaveShaperNode.curve') 1094 @DomName('WaveShaperNode.curve')
1095 @DocsEditable() 1095 @DocsEditable()
1096 Float32List curve; 1096 Float32List curve;
1097 1097
1098 @DomName('WaveShaperNode.oversample') 1098 @DomName('WaveShaperNode.oversample')
1099 @DocsEditable() 1099 @DocsEditable()
1100 String oversample; 1100 String oversample;
1101 } 1101 }
OLDNEW
« no previous file with comments | « sdk/lib/typed_data/dart2js/typed_data_dart2js.dart ('k') | sdk/lib/web_gl/dart2js/web_gl_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698