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

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

Issue 11053020: Changing return value of request animation frame. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing dartium build error. 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 // Suppress the default since it has non-standard return type and add 394 // Suppress the default since it has non-standard return type and add
395 // overrides. 395 // overrides.
396 [Suppressed] boolean send(in DOMString data) raises(DOMException); 396 [Suppressed] boolean send(in DOMString data) raises(DOMException);
397 [Custom] void send(DOMString data) raises(DOMException); 397 [Custom] void send(DOMString data) raises(DOMException);
398 [Custom] void send(Blob data) raises(DOMException); 398 [Custom] void send(Blob data) raises(DOMException);
399 [Custom] void send(ArrayBuffer data) raises(DOMException); 399 [Custom] void send(ArrayBuffer data) raises(DOMException);
400 [Custom] void send(ArrayBufferView data) raises(DOMException); 400 [Custom] void send(ArrayBufferView data) raises(DOMException);
401 }; 401 };
402 } 402 }
403 403
404 module core {
405 [supplemental, Callback]
406 interface RequestAnimationFrameCallback {
407 // Webkit implements this as returning bool, but standard is void.
408 [Suppressed] boolean handleEvent(in DOMTimeStamp time);
409 [Custom] void handleEvent(in DOMTimeStamp time);
410 };
411 }
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