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

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

Issue 24479002: Revert "Start of dartium custom element lifecycle event support." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 14 matching lines...) Expand all
25 [Supplemental] 25 [Supplemental]
26 interface Clipboard { 26 interface Clipboard {
27 [Suppressed] void setDragImage(HTMLImageElement image, long x, long y); 27 [Suppressed] void setDragImage(HTMLImageElement image, long x, long y);
28 [Custom] void setDragImage(Element element, long x, long y); 28 [Custom] void setDragImage(Element element, long x, long y);
29 }; 29 };
30 30
31 [Supplemental] 31 [Supplemental]
32 interface Document { 32 interface Document {
33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height); 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height);
34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height); 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height);
35 [Custom] Element createElement(DOMString tagName);
36 [Custom] Element createElement(DOMString localName, DOMString typeExtension);
37 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me);
38 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me, DOMString typeExtension);
39 }; 35 };
40 36
41 [Supplemental] 37 [Supplemental]
42 interface Node { 38 interface Node {
43 Node cloneNode([Default=Undefined] optional boolean deep); 39 Node cloneNode([Default=Undefined] optional boolean deep);
44 }; 40 };
45 41
46 [Supplemental] 42 [Supplemental]
47 interface ScriptProcessorNode { 43 interface ScriptProcessorNode {
48 [Suppressed] attribute EventListener onaudioprocess; 44 [Suppressed] attribute EventListener onaudioprocess;
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 // TextEncoder/TextDecoder 340 // TextEncoder/TextDecoder
345 [Suppressed] 341 [Suppressed]
346 interface TextEncoder {}; 342 interface TextEncoder {};
347 343
348 [Suppressed] 344 [Suppressed]
349 interface TextDecoder {}; 345 interface TextDecoder {};
350 346
351 [Supplemental] 347 [Supplemental]
352 interface Window : EventTarget {}; 348 interface Window : EventTarget {};
353 349
OLDNEW
« no previous file with comments | « tests/html/custom/document_register_type_extensions_test.dart ('k') | tools/dom/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698