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

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

Issue 10972017: Changing return value of request animation frame. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Syncing with latest. Created 8 years, 2 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 // TODO(efortuna): Clean up these comments once we have dealt with the extra 5 // TODO(efortuna): Clean up these comments once we have dealt with the extra
6 // methods on these list-like classes. 6 // methods on these list-like classes.
7 ClientRectList implements sequence<ClientRect>; 7 ClientRectList implements sequence<ClientRect>;
8 CSSRuleList implements sequence<CSSRule>; 8 CSSRuleList implements sequence<CSSRule>;
9 CSSValueList implements sequence<CSSValue>; 9 CSSValueList implements sequence<CSSValue>;
10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field. 10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field.
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 // Suppress the default since it has non-standard return type and add 395 // Suppress the default since it has non-standard return type and add
396 // overrides. 396 // overrides.
397 [Suppressed] boolean send(in DOMString data) raises(DOMException); 397 [Suppressed] boolean send(in DOMString data) raises(DOMException);
398 [Custom] void send(DOMString data) raises(DOMException); 398 [Custom] void send(DOMString data) raises(DOMException);
399 [Custom] void send(Blob data) raises(DOMException); 399 [Custom] void send(Blob data) raises(DOMException);
400 [Custom] void send(ArrayBuffer data) raises(DOMException); 400 [Custom] void send(ArrayBuffer data) raises(DOMException);
401 [Custom] void send(ArrayBufferView data) raises(DOMException); 401 [Custom] void send(ArrayBufferView data) raises(DOMException);
402 }; 402 };
403 } 403 }
404 404
405 module core {
406 [supplemental, Callback]
407 interface RequestAnimationFrameCallback {
408 // Webkit implements this as returning bool, but standard is void.
409 [Suppressed] boolean handleEvent(in DOMTimeStamp time);
410 void handleEvent(in DOMTimeStamp time);
411 };
412 }
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