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

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

Issue 22357003: MERGE: 152953-155080 (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 | « tests/html/html.status ('k') | tools/dom/scripts/dartgenerator.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 [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
11 [Supplemental] 11 [Supplemental]
12 interface WaveShaperNode { 12 interface WaveShaperNode {
13 // TODO(ager): Auto-generate this custom method when the info about retaining 13 // TODO(ager): Auto-generate this custom method when the info about retaining
14 // typed arrays is in the IDL. 14 // typed arrays is in the IDL.
15 [CustomSetter] attribute Float32Array curve; 15 [CustomSetter] attribute Float32Array curve;
16 }; 16 };
17 17
18 [Supplemental] 18 [Supplemental]
19 interface AudioParam { 19 interface AudioParam {
20 // TODO(ager): Auto-generate this custom method when the info about retaining 20 // TODO(ager): Auto-generate this custom method when the info about retaining
21 // typed arrays is in the IDL. 21 // typed arrays is in the IDL.
22 [Custom] void setValueCurveAtTime(Float32Array values, float time, float durat ion); 22 [Custom] void setValueCurveAtTime(Float32Array values, double time, double dur ation);
23 }; 23 };
24 24
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 {
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 [CustomSetter] attribute DOMString search; 328 [CustomSetter] attribute DOMString search;
329 [CustomSetter] attribute DOMString hash; 329 [CustomSetter] attribute DOMString hash;
330 }; 330 };
331 331
332 332
333 [Supplemental] 333 [Supplemental]
334 interface Window : EventTarget {}; 334 interface Window : EventTarget {};
335 335
336 [Supplemental] 336 [Supplemental]
337 interface AbstractWorker : EventTarget {}; 337 interface AbstractWorker : EventTarget {};
OLDNEW
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698