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

Unified Diff: Source/core/html/VoidCallback.h

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/core/html/VoidCallback.h
diff --git a/Source/core/html/VoidCallback.h b/Source/core/html/VoidCallback.h
index cda64e5e1a033f9717b4c227d978e31ed2f433da..8fdf709d5e0f142a7dec6c36a81761893ff0b929 100644
--- a/Source/core/html/VoidCallback.h
+++ b/Source/core/html/VoidCallback.h
@@ -31,7 +31,7 @@ namespace WebCore {
class VoidCallback {
public:
virtual ~VoidCallback() { }
- virtual bool handleEvent() = 0;
+ virtual void handleEvent() = 0;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698