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

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

Issue 22322003: Make Node.clone argument non-optional (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « no previous file | no next file » | 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 [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 17 matching lines...) Expand all
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 }; 35 };
36 36
37 [Supplemental] 37 [Supplemental]
38 interface Node {
39 Node cloneNode([Default=Undefined] optional boolean deep);
40 };
41
42 [Supplemental]
38 interface ScriptProcessorNode { 43 interface ScriptProcessorNode {
39 [Suppressed] attribute EventListener onaudioprocess; 44 [Suppressed] attribute EventListener onaudioprocess;
40 [Custom] void _setEventListener(EventListener eventListener); 45 [Custom] void _setEventListener(EventListener eventListener);
41 }; 46 };
42 47
43 /* 48 /*
44 // TODO(vsm): How should this interact with the new ChildNode and 49 // TODO(vsm): How should this interact with the new ChildNode and
45 // ParentNode interfaces? 50 // ParentNode interfaces?
46 // Force ElementTraversal. WebKit defines these directly. 51 // Force ElementTraversal. WebKit defines these directly.
47 interface ElementTraversal : ChildNode, ParentNode { 52 interface ElementTraversal : ChildNode, ParentNode {
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 [CustomSetter] attribute DOMString search; 333 [CustomSetter] attribute DOMString search;
329 [CustomSetter] attribute DOMString hash; 334 [CustomSetter] attribute DOMString hash;
330 }; 335 };
331 336
332 337
333 [Supplemental] 338 [Supplemental]
334 interface Window : EventTarget {}; 339 interface Window : EventTarget {};
335 340
336 [Supplemental] 341 [Supplemental]
337 interface AbstractWorker : EventTarget {}; 342 interface AbstractWorker : EventTarget {};
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698