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

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

Issue 204033002: Fixes for Chrome 34 merge (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « tools/dom/dom.json ('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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 interface FormData { 273 interface FormData {
274 [Suppressed] void append(DOMString name, DOMString value, DOMString filename); 274 [Suppressed] void append(DOMString name, DOMString value, DOMString filename);
275 [Custom] void append(DOMString name, DOMString value); 275 [Custom] void append(DOMString name, DOMString value);
276 [Custom] void append(DOMString name, Blob value, optional DOMString filename); 276 [Custom] void append(DOMString name, Blob value, optional DOMString filename);
277 }; 277 };
278 278
279 [Supplemental] 279 [Supplemental]
280 interface SQLResultSetRowList { 280 interface SQLResultSetRowList {
281 // Change the return type to Dictionary so that rows are exposed in the Dart 281 // Change the return type to Dictionary so that rows are exposed in the Dart
282 // API as a Maps, with the appropriate conversion in JavaScript. 282 // API as a Maps, with the appropriate conversion in JavaScript.
283 [Suppressed] any item(unsigned long index); 283 [Suppressed] object item(unsigned long index);
284 [Custom] Dictionary item(unsigned long index); 284 [Custom] Dictionary item(unsigned long index);
285 }; 285 };
286 286
287 [Supplemental] 287 [Supplemental]
288 interface WebSocket { 288 interface WebSocket {
289 // Suppress the default since it has non-standard return type and add 289 // Suppress the default since it has non-standard return type and add
290 // overrides. 290 // overrides.
291 [Suppressed] boolean send(ArrayBuffer data); 291 [Suppressed] boolean send(ArrayBuffer data);
292 [Suppressed] boolean send(ArrayBufferView data); 292 [Suppressed] boolean send(ArrayBufferView data);
293 [Suppressed] boolean send(Blob data); 293 [Suppressed] boolean send(Blob data);
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 // TextEncoder/TextDecoder 352 // TextEncoder/TextDecoder
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 [Suppressed]
363 interface Promise {};
364
365 [Suppressed]
366 interface InstallEvent {};
367
368 [Suppressed]
369 interface InstallPhaseEvent {};
370
362 Element implements GlobalEventHandlers; 371 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « tools/dom/dom.json ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698