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

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

Issue 10689052: Revert "Blob constructor" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 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 FileList implements sequence<File>; 5 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>; 6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>; 7 MediaList implements sequence<DOMString>;
8 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
9 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
10 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 [DartName=getObject] IDBRequest get(in IDBKeyRange key); 248 [DartName=getObject] IDBRequest get(in IDBKeyRange key);
249 }; 249 };
250 250
251 interface EntrySync { 251 interface EntrySync {
252 // Native implementation is declared to return EntrySync. 252 // Native implementation is declared to return EntrySync.
253 [Suppressed] DirectoryEntrySync getParent(); 253 [Suppressed] DirectoryEntrySync getParent();
254 EntrySync getParent(); 254 EntrySync getParent();
255 }; 255 };
256 }; 256 };
257 257
258
259 module html {
260 [Supplemental,
261 CustomConstructor,
262 Constructor(in Array blobParts,
263 [Optional] in DOMString type, [Optional] in DOMString endings)
264 ]
265 interface Blob {
266 };
267 };
268
269 module html { 258 module html {
270 [Supplemental, Callback] // Add missing Callback attribute. 259 [Supplemental, Callback] // Add missing Callback attribute.
271 interface VoidCallback { 260 interface VoidCallback {
272 }; 261 };
273 }; 262 };
274 263
275 module svg { 264 module svg {
276 interface SVGNumber { 265 interface SVGNumber {
277 [StrictTypeChecking, Custom] attribute double value; 266 [StrictTypeChecking, Custom] attribute double value;
278 }; 267 };
279 } 268 }
OLDNEW
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/templates/html/frog/factoryprovider_Blob.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698