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

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

Issue 10910291: Changing return value of request animation frame. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 // Suppress the default since it has non-standard return type and add 340 // Suppress the default since it has non-standard return type and add
341 // overrides. 341 // overrides.
342 [Suppressed] boolean send(in DOMString data) raises(DOMException); 342 [Suppressed] boolean send(in DOMString data) raises(DOMException);
343 [Custom] void send(DOMString data) raises(DOMException); 343 [Custom] void send(DOMString data) raises(DOMException);
344 [Custom] void send(Blob data) raises(DOMException); 344 [Custom] void send(Blob data) raises(DOMException);
345 [Custom] void send(ArrayBuffer data) raises(DOMException); 345 [Custom] void send(ArrayBuffer data) raises(DOMException);
346 [Custom] void send(ArrayBufferView data) raises(DOMException); 346 [Custom] void send(ArrayBufferView data) raises(DOMException);
347 }; 347 };
348 } 348 }
349 349
350 module core {
351 [supplemental, Callback]
Anton Muhin 2012/09/19 09:31:45 nit: <S>upplemental
352 interface RequestAnimationFrameCallback {
353 // Webkit implements this as returning bool, but standard is void.
354 [Suppressed] boolean handleEvent(in DOMTimeStamp time);
355 void handleEvent(in DOMTimeStamp time);
356 };
357 }
OLDNEW
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/templates/html/dart2js/impl_Window.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698