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

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

Issue 16636003: Blink IDL roll. (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:nativewrappers'; 8 import 'dart:nativewrappers';
9 import 'dart:typed_data'; 9 import 'dart:typed_data';
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
1307 WaveShaperNode.internal() : super.internal(); 1307 WaveShaperNode.internal() : super.internal();
1308 1308
1309 @DomName('WaveShaperNode.curve') 1309 @DomName('WaveShaperNode.curve')
1310 @DocsEditable 1310 @DocsEditable
1311 Float32List get curve native "WaveShaperNode_curve_Getter"; 1311 Float32List get curve native "WaveShaperNode_curve_Getter";
1312 1312
1313 @DomName('WaveShaperNode.curve') 1313 @DomName('WaveShaperNode.curve')
1314 @DocsEditable 1314 @DocsEditable
1315 void set curve(Float32List value) native "WaveShaperNode_curve_Setter"; 1315 void set curve(Float32List value) native "WaveShaperNode_curve_Setter";
1316 1316
1317 @DomName('WaveShaperNode.oversample')
1318 @DocsEditable
1319 @Experimental // untriaged
1320 String get oversample native "WaveShaperNode_oversample_Getter";
1321
1322 @DomName('WaveShaperNode.oversample')
1323 @DocsEditable
1324 @Experimental // untriaged
1325 void set oversample(String value) native "WaveShaperNode_oversample_Setter";
1326
1317 } 1327 }
1318 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1328 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1319 // for details. All rights reserved. Use of this source code is governed by a 1329 // for details. All rights reserved. Use of this source code is governed by a
1320 // BSD-style license that can be found in the LICENSE file. 1330 // BSD-style license that can be found in the LICENSE file.
1321 1331
1322 // WARNING: Do not edit - generated code. 1332 // WARNING: Do not edit - generated code.
1323 1333
1324 1334
1325 @DocsEditable 1335 @DocsEditable
1326 @DomName('WaveTable') 1336 @DomName('WaveTable')
1327 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#WaveTab le-section 1337 // https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html#WaveTab le-section
1328 @Experimental 1338 @Experimental
1329 class WaveTable extends NativeFieldWrapperClass1 { 1339 class WaveTable extends NativeFieldWrapperClass1 {
1330 WaveTable.internal(); 1340 WaveTable.internal();
1331 1341
1332 } 1342 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698