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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/idl/dart/dart.idl
===================================================================
--- lib/html/idl/dart/dart.idl (revision 13673)
+++ lib/html/idl/dart/dart.idl (working copy)
@@ -391,3 +391,12 @@
[Custom] void handleEvent(in DOMTimeStamp time);
};
}
+
+module audio {
+ [Supplemental, Callback]
+ interface AudioBufferCallback {
+ // Webkit implements this as returning bool, but standard is void.
+ [Suppressed] boolean handleEvent(in AudioBuffer audioBuffer);
Anton Muhin 2012/10/16 09:41:09 just a thought: do we have use cases when callback
podivilov 2012/10/16 11:45:43 Looks like generated WebKit bindings always ignore
+ [Custom] void handleEvent(in AudioBuffer audioBuffer);
+ };
+}
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698