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 150783005: Fixes for 1750 roll (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More fixes for 1750 Created 6 years, 10 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/generator.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
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 [Suppressed] boolean send(ArrayBufferView data); 292 [Suppressed] boolean send(ArrayBufferView data);
293 [Suppressed] boolean send(Blob data); 293 [Suppressed] boolean send(Blob data);
294 [Suppressed] boolean send(DOMString data); 294 [Suppressed] boolean send(DOMString data);
295 295
296 [Custom] void send(DOMString data); 296 [Custom] void send(DOMString data);
297 [Custom] void send(Blob data); 297 [Custom] void send(Blob data);
298 [Custom] void send(ArrayBuffer data); 298 [Custom] void send(ArrayBuffer data);
299 [Custom] void send(ArrayBufferView data); 299 [Custom] void send(ArrayBufferView data);
300 }; 300 };
301 301
302 [Supplemental] 302 [Supplemental, Constructor]
303 interface XMLHttpRequest { 303 interface XMLHttpRequest {
304 [Custom] void send(); 304 [Custom] void send();
305 [Custom] void send(ArrayBuffer data); // FIXME: this should be eventually dep recated. 305 [Custom] void send(ArrayBuffer data); // FIXME: this should be eventually dep recated.
306 [Custom] void send(ArrayBufferView data); 306 [Custom] void send(ArrayBufferView data);
307 [Custom] void send(Blob data); 307 [Custom] void send(Blob data);
308 [Custom] void send(Document data); 308 [Custom] void send(Document data);
309 [Custom] void send([StrictTypeChecking] DOMString data); 309 [Custom] void send([StrictTypeChecking] DOMString data);
310 [Custom] void send(FormData data); 310 [Custom] void send(FormData data);
311 }; 311 };
312 312
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 [Suppressed] 353 [Suppressed]
354 interface TextEncoder {}; 354 interface TextEncoder {};
355 355
356 [Suppressed] 356 [Suppressed]
357 interface TextDecoder {}; 357 interface TextDecoder {};
358 358
359 [Supplemental] 359 [Supplemental]
360 interface Window : EventTarget {}; 360 interface Window : EventTarget {};
361 361
362 Element implements GlobalEventHandlers; 362 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698