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

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

Issue 16677011: Updating metadata after Chrome rolls. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
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:_collection-dev'; 5 import 'dart:_collection-dev';
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:typed_data'; 8 import 'dart:typed_data';
9 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS; 9 import 'dart:_js_helper' show Creates, JSName, Returns, convertDartClosureToJS;
10 import 'dart:_foreign_helper' show JS; 10 import 'dart:_foreign_helper' show JS;
(...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#dfn-Wav eShaperNode 1043 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#dfn-Wav eShaperNode
1044 @Experimental 1044 @Experimental
1045 class WaveShaperNode extends AudioNode native "WaveShaperNode" { 1045 class WaveShaperNode extends AudioNode native "WaveShaperNode" {
1046 1046
1047 @DomName('WaveShaperNode.curve') 1047 @DomName('WaveShaperNode.curve')
1048 @DocsEditable 1048 @DocsEditable
1049 Float32List curve; 1049 Float32List curve;
1050 1050
1051 @DomName('WaveShaperNode.oversample') 1051 @DomName('WaveShaperNode.oversample')
1052 @DocsEditable 1052 @DocsEditable
1053 @Experimental // untriaged
1054 String oversample; 1053 String oversample;
1055 } 1054 }
1056 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1055 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1057 // for details. All rights reserved. Use of this source code is governed by a 1056 // for details. All rights reserved. Use of this source code is governed by a
1058 // BSD-style license that can be found in the LICENSE file. 1057 // BSD-style license that can be found in the LICENSE file.
1059 1058
1060 1059
1061 @DocsEditable 1060 @DocsEditable
1062 @DomName('WaveTable') 1061 @DomName('WaveTable')
1063 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#WaveTab le-section 1062 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#WaveTab le-section
1064 @Experimental 1063 @Experimental
1065 class WaveTable native "WaveTable" { 1064 class WaveTable native "WaveTable" {
1066 } 1065 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698