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

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

Issue 8784013: Fix CanvasPixelArray's operator[] for the wrapping js dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rerun Created 9 years 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 | « client/dom/generated/wrapping_dom_externs.js ('k') | client/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 1
2 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 NamedNodeMap implements sequence<Node>; 5 NamedNodeMap implements sequence<Node>;
6 NodeList implements sequence<Node>; 6 NodeList implements sequence<Node>;
7 HTMLCollection implements sequence<Node>; 7 HTMLCollection implements sequence<Node>;
8 MediaList implements sequence<DOMString>; 8 MediaList implements sequence<DOMString>;
9 StyleSheetList implements sequence<StyleSheet>; 9 StyleSheetList implements sequence<StyleSheet>;
10 TouchList implements sequence<Touch>; 10 TouchList implements sequence<Touch>;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 [Suppressed, StrictTypeChecking, Custom] void getUniform(); 104 [Suppressed, StrictTypeChecking, Custom] void getUniform();
105 105
106 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D OMException); 106 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D OMException);
107 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); 107 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib();
108 }; 108 };
109 } 109 }
110 110
111 111
112 112
113 module canvas { 113 module canvas {
114 interface CanvasPixelArray {
115 int item(in int index);
116 };
117
118 // TODO(dstockwell): Define these manually. 114 // TODO(dstockwell): Define these manually.
119 [Supplemental] 115 [Supplemental]
120 interface Float32Array { 116 interface Float32Array {
121 [Suppressed] void set(); 117 [Suppressed] void set();
122 }; 118 };
123 [Supplemental] 119 [Supplemental]
124 interface Float64Array { 120 interface Float64Array {
125 [Suppressed] void set(); 121 [Suppressed] void set();
126 }; 122 };
127 [Supplemental] 123 [Supplemental]
(...skipping 30 matching lines...) Expand all
158 }; 154 };
159 [Supplemental] 155 [Supplemental]
160 interface IDBIndex { 156 interface IDBIndex {
161 [DartName=getObject] IDBRequest get(in IDBKey key); 157 [DartName=getObject] IDBRequest get(in IDBKey key);
162 }; 158 };
163 [Supplemental] 159 [Supplemental]
164 interface IDBObjectStore { 160 interface IDBObjectStore {
165 [DartName=getObject] IDBRequest get(in IDBKey key); 161 [DartName=getObject] IDBRequest get(in IDBKey key);
166 }; 162 };
167 }; 163 };
OLDNEW
« no previous file with comments | « client/dom/generated/wrapping_dom_externs.js ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698