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

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

Issue 12036013: Initial work on ImageData.data. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/instance_of_test.dart ('k') | tools/dom/scripts/systemnative.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 6
7 [Supplemental] 7 [Supplemental]
8 interface Document { 8 interface Document {
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 [Supplemental] 54 [Supplemental]
55 interface HTMLSelectElement { 55 interface HTMLSelectElement {
56 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O ptional=DefaultIsUndefined] in HTMLElement before); 56 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O ptional=DefaultIsUndefined] in HTMLElement before);
57 [Suppressed, Custom] void remove(); 57 [Suppressed, Custom] void remove();
58 [Custom] void remove(in long index); 58 [Custom] void remove(in long index);
59 [Custom] void remove(in HTMLOptionElement option); 59 [Custom] void remove(in HTMLOptionElement option);
60 }; 60 };
61 61
62 [Supplemental] 62 [Supplemental]
63 interface ImageData { 63 interface ImageData {
64 readonly attribute Uint8ClampedArray data; 64 [Custom] readonly attribute int[] data;
65 }; 65 };
66 66
67 [Supplemental] 67 [Supplemental]
68 interface HTMLMediaElement { 68 interface HTMLMediaElement {
69 // Adding media events. 69 // Adding media events.
70 attribute EventListener oncanplay; 70 attribute EventListener oncanplay;
71 attribute EventListener oncanplaythrough; 71 attribute EventListener oncanplaythrough;
72 attribute EventListener ondurationchange; 72 attribute EventListener ondurationchange;
73 attribute EventListener onemptied; 73 attribute EventListener onemptied;
74 attribute EventListener onended; 74 attribute EventListener onended;
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 [Suppressed] boolean send(in DOMString data) raises(DOMException); 337 [Suppressed] boolean send(in DOMString data) raises(DOMException);
338 338
339 [Custom] void send(DOMString data) raises(DOMException); 339 [Custom] void send(DOMString data) raises(DOMException);
340 [Custom] void send(Blob data) raises(DOMException); 340 [Custom] void send(Blob data) raises(DOMException);
341 [Custom] void send(ArrayBuffer data) raises(DOMException); 341 [Custom] void send(ArrayBuffer data) raises(DOMException);
342 [Custom] void send(ArrayBufferView data) raises(DOMException); 342 [Custom] void send(ArrayBufferView data) raises(DOMException);
343 }; 343 };
344 344
345 [Suppressed] 345 [Suppressed]
346 interface Entity {}; 346 interface Entity {};
OLDNEW
« no previous file with comments | « tests/html/instance_of_test.dart ('k') | tools/dom/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698