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

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

Issue 589253002: Revert "Chrome 38 script changes from integration branch" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « sdk/lib/svg/dartium/svg_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:_internal' hide deprecated; 8 import 'dart:_internal' hide deprecated;
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:html_common'; 10 import 'dart:html_common';
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 @Experimental() 480 @Experimental()
481 @Native("AudioParam") 481 @Native("AudioParam")
482 class AudioParam extends Interceptor { 482 class AudioParam extends Interceptor {
483 // To suppress missing implicit constructor warnings. 483 // To suppress missing implicit constructor warnings.
484 factory AudioParam._() { throw new UnsupportedError("Not supported"); } 484 factory AudioParam._() { throw new UnsupportedError("Not supported"); }
485 485
486 @DomName('AudioParam.defaultValue') 486 @DomName('AudioParam.defaultValue')
487 @DocsEditable() 487 @DocsEditable()
488 final double defaultValue; 488 final double defaultValue;
489 489
490 @DomName('AudioParam.maxValue')
491 @DocsEditable()
492 final double maxValue;
493
494 @DomName('AudioParam.minValue')
495 @DocsEditable()
496 final double minValue;
497
498 @DomName('AudioParam.name')
499 @DocsEditable()
500 final String name;
501
502 @DomName('AudioParam.units')
503 @DocsEditable()
504 final int units;
505
490 @DomName('AudioParam.value') 506 @DomName('AudioParam.value')
491 @DocsEditable() 507 @DocsEditable()
492 num value; 508 num value;
493 509
494 @DomName('AudioParam.cancelScheduledValues') 510 @DomName('AudioParam.cancelScheduledValues')
495 @DocsEditable() 511 @DocsEditable()
496 void cancelScheduledValues(num startTime) native; 512 void cancelScheduledValues(num startTime) native;
497 513
498 @DomName('AudioParam.exponentialRampToValueAtTime') 514 @DomName('AudioParam.exponentialRampToValueAtTime')
499 @DocsEditable() 515 @DocsEditable()
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); } 1001 factory WaveShaperNode._() { throw new UnsupportedError("Not supported"); }
986 1002
987 @DomName('WaveShaperNode.curve') 1003 @DomName('WaveShaperNode.curve')
988 @DocsEditable() 1004 @DocsEditable()
989 Float32List curve; 1005 Float32List curve;
990 1006
991 @DomName('WaveShaperNode.oversample') 1007 @DomName('WaveShaperNode.oversample')
992 @DocsEditable() 1008 @DocsEditable()
993 String oversample; 1009 String oversample;
994 } 1010 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dartium/svg_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