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

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

Issue 11138028: Change return type to w3c standard of void for AudioBufferCallback. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/systemhtml.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 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 ClientRectList implements sequence<ClientRect>; 5 ClientRectList implements sequence<ClientRect>;
6 CSSRuleList implements sequence<CSSRule>; 6 CSSRuleList implements sequence<CSSRule>;
7 CSSValueList implements sequence<CSSValue>; 7 CSSValueList implements sequence<CSSValue>;
8 DOMMimeTypeArray implements sequence<DOMMimeType>; 8 DOMMimeTypeArray implements sequence<DOMMimeType>;
9 DOMPluginArray implements sequence<DOMPlugin>; 9 DOMPluginArray implements sequence<DOMPlugin>;
10 EntryArray implements sequence<Entry>; 10 EntryArray implements sequence<Entry>;
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 // overrides. 377 // overrides.
378 [Suppressed] boolean send(in DOMString data) raises(DOMException); 378 [Suppressed] boolean send(in DOMString data) raises(DOMException);
379 [Custom] void send(DOMString data) raises(DOMException); 379 [Custom] void send(DOMString data) raises(DOMException);
380 [Custom] void send(Blob data) raises(DOMException); 380 [Custom] void send(Blob data) raises(DOMException);
381 [Custom] void send(ArrayBuffer data) raises(DOMException); 381 [Custom] void send(ArrayBuffer data) raises(DOMException);
382 [Custom] void send(ArrayBufferView data) raises(DOMException); 382 [Custom] void send(ArrayBufferView data) raises(DOMException);
383 }; 383 };
384 } 384 }
385 385
386 module core { 386 module core {
387 [Supplemental, Callback]
388 interface RequestAnimationFrameCallback {
389 // Webkit implements this as returning bool, but standard is void.
390 [Suppressed] boolean handleEvent(in DOMTimeStamp time);
391 [Custom] void handleEvent(in DOMTimeStamp time);
392 };
393
394 [Suppressed] 387 [Suppressed]
395 interface Entity {}; 388 interface Entity {};
396 } 389 }
OLDNEW
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698