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

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

Issue 395913002: Change in preparation of fixing issue 19500. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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 // This file introduces / supplements and forces Dart declarations. 1 // This file introduces / supplements and forces Dart declarations.
2 2
3 [Supplemental, 3 [Supplemental,
4 Constructor] 4 Constructor]
5 interface AudioContext { 5 interface AudioContext {
6 // TODO(ager): Auto-generate this custom method when the info about retaining 6 // TODO(ager): Auto-generate this custom method when the info about retaining
7 // typed arrays is in the IDL. 7 // typed arrays is in the IDL.
8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback);
9 }; 9 };
10 10
(...skipping 15 matching lines...) Expand all
26 interface Document { 26 interface Document {
27 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height); 27 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height);
28 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height); 28 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height);
29 [Custom] Element createElement(DOMString tagName); 29 [Custom] Element createElement(DOMString tagName);
30 [Custom] Element createElement(DOMString localName, DOMString typeExtension); 30 [Custom] Element createElement(DOMString localName, DOMString typeExtension);
31 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me); 31 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me);
32 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me, DOMString typeExtension); 32 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me, DOMString typeExtension);
33 }; 33 };
34 34
35 [Supplemental] 35 [Supplemental]
36 interface FileReader {
37 [Suppressed] readonly attribute Object result;
38 };
39
40 [Supplemental]
36 interface Node { 41 interface Node {
37 [Custom] Node cloneNode([Default=Undefined] optional boolean deep); 42 [Custom] Node cloneNode([Default=Undefined] optional boolean deep);
38 [Suppressed] readonly attribute Element nextElementSibling; 43 [Suppressed] readonly attribute Element nextElementSibling;
39 [Suppressed] readonly attribute Element previousElementSibling; 44 [Suppressed] readonly attribute Element previousElementSibling;
40 }; 45 };
41 46
42 [Supplemental] 47 [Supplemental]
43 interface ScriptProcessorNode { 48 interface ScriptProcessorNode {
44 [Suppressed] attribute EventListener onaudioprocess; 49 [Suppressed] attribute EventListener onaudioprocess;
45 [Custom] void _setEventListener(EventListener eventListener); 50 [Custom] void _setEventListener(EventListener eventListener);
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 484
480 [Supplemental] interface SpeechInputEvent : Event { 485 [Supplemental] interface SpeechInputEvent : Event {
481 [Suppressed] readonly attribute SpeechInputResultList results; 486 [Suppressed] readonly attribute SpeechInputResultList results;
482 }; 487 };
483 488
484 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { 489 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode {
485 [Suppressed] readonly attribute AudioParam gain; 490 [Suppressed] readonly attribute AudioParam gain;
486 }; 491 };
487 492
488 Element implements GlobalEventHandlers; 493 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/templates/html/impl/impl_FileReader.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698