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

Unified Diff: Source/modules/webmidi/MIDISuccessCallback.idl

Issue 111603006: Simplify invokeCallback() and support void return values for IDL callbacks (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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
Index: Source/modules/webmidi/MIDISuccessCallback.idl
diff --git a/Source/modules/webmidi/MIDISuccessCallback.idl b/Source/modules/webmidi/MIDISuccessCallback.idl
index 179724bbbd190fae2f5bdc578313115ae2f1caba..b19f532e8f74dc39ba051b4541c93fc603050441 100644
--- a/Source/modules/webmidi/MIDISuccessCallback.idl
+++ b/Source/modules/webmidi/MIDISuccessCallback.idl
@@ -32,5 +32,5 @@ callback interface MIDISuccessCallback {
// FIXME: The second argument should be Dictionary, but IDL generator
// can not handle Dictionary as a handleEvent argument correctly now.
// http://crbug.com/246161
- boolean handleEvent(MIDIAccess access, boolean sysex);
+ void handleEvent(MIDIAccess access, boolean sysex);
};

Powered by Google App Engine
This is Rietveld 408576698