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

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

Issue 12087112: Can now correctly add documentation to constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 library web_audio; 1 library web_audio;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:nativewrappers'; 7 import 'dart:nativewrappers';
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated dart:audio library. 9 // Auto-generated dart:audio library.
10 10
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 // BSD-style license that can be found in the LICENSE file. 896 // BSD-style license that can be found in the LICENSE file.
897 897
898 // WARNING: Do not edit - generated code. 898 // WARNING: Do not edit - generated code.
899 899
900 900
901 @DocsEditable 901 @DocsEditable
902 @DomName('OfflineAudioContext') 902 @DomName('OfflineAudioContext')
903 class OfflineAudioContext extends AudioContext implements EventTarget { 903 class OfflineAudioContext extends AudioContext implements EventTarget {
904 OfflineAudioContext.internal() : super.internal(); 904 OfflineAudioContext.internal() : super.internal();
905 905
906 @DomName('OfflineAudioContext.OfflineAudioContext')
906 @DocsEditable 907 @DocsEditable
907 factory OfflineAudioContext(int numberOfChannels, int numberOfFrames, num samp leRate) { 908 factory OfflineAudioContext(int numberOfChannels, int numberOfFrames, num samp leRate) {
908 return OfflineAudioContext._create_1(numberOfChannels, numberOfFrames, sampl eRate); 909 return OfflineAudioContext._create_1(numberOfChannels, numberOfFrames, sampl eRate);
909 } 910 }
910 911
911 @DocsEditable 912 @DocsEditable
912 static OfflineAudioContext _create_1(numberOfChannels, numberOfFrames, sampleR ate) native "OfflineAudioContext__create_1constructorCallback"; 913 static OfflineAudioContext _create_1(numberOfChannels, numberOfFrames, sampleR ate) native "OfflineAudioContext__create_1constructorCallback";
913 914
914 } 915 }
915 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 916 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 1121
1121 // WARNING: Do not edit - generated code. 1122 // WARNING: Do not edit - generated code.
1122 1123
1123 1124
1124 @DocsEditable 1125 @DocsEditable
1125 @DomName('WaveTable') 1126 @DomName('WaveTable')
1126 class WaveTable extends NativeFieldWrapperClass1 { 1127 class WaveTable extends NativeFieldWrapperClass1 {
1127 WaveTable.internal(); 1128 WaveTable.internal();
1128 1129
1129 } 1130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698