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

Side by Side Diff: tools/dom/idl/dart/dart.idl

Issue 2940543002: Fix sound not playing in Dartium checked mode. (Closed)
Patch Set: Fix return type Created 3 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
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // This file introduces / supplements and forces Dart declarations. 1 // This file introduces / supplements and forces Dart declarations.
2 2
3 [DartSupplemental,
4 Constructor]
5 interface AudioContext {
6 // TODO(ager): Auto-generate this custom method when the info about retaining
7 // typed arrays is in the IDL.
8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback);
9 };
10
11 [DartSupplemental] 3 [DartSupplemental]
12 interface WaveShaperNode { 4 interface WaveShaperNode {
13 // TODO(ager): Auto-generate this custom method when the info about retaining 5 // TODO(ager): Auto-generate this custom method when the info about retaining
14 // typed arrays is in the IDL. 6 // typed arrays is in the IDL.
15 [Custom=Setter] attribute Float32Array curve; 7 [Custom=Setter] attribute Float32Array curve;
16 }; 8 };
17 9
18 [DartSupplemental] 10 [DartSupplemental]
19 interface AudioParam { 11 interface AudioParam {
20 // TODO(ager): Auto-generate this custom method when the info about retaining 12 // TODO(ager): Auto-generate this custom method when the info about retaining
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 }; 473 };
482 474
483 475
484 [DartSupplemental] 476 [DartSupplemental]
485 interface EventTarget { 477 interface EventTarget {
486 [DartSuppress] void addEventListener(DOMString type, EventListener? listener , optional (EventListenerOptions or boolean) options); 478 [DartSuppress] void addEventListener(DOMString type, EventListener? listener , optional (EventListenerOptions or boolean) options);
487 [DartSuppress] void removeEventListener(DOMString type, EventListener? liste ner, optional (EventListenerOptions or boolean) options); 479 [DartSuppress] void removeEventListener(DOMString type, EventListener? liste ner, optional (EventListenerOptions or boolean) options);
488 [Custom] void addEventListener(DOMString type, EventListener? listener, opti onal boolean options); 480 [Custom] void addEventListener(DOMString type, EventListener? listener, opti onal boolean options);
489 [Custom] void removeEventListener(DOMString type, EventListener? listener, o ptional boolean options); 481 [Custom] void removeEventListener(DOMString type, EventListener? listener, o ptional boolean options);
490 }; 482 };
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698