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

Unified Diff: Source/modules/quota/StorageErrorCallback.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/modules/quota/StorageErrorCallback.h
diff --git a/Source/modules/quota/StorageErrorCallback.h b/Source/modules/quota/StorageErrorCallback.h
index c15a0eab6bae028187b48d382bf3911817a6e16a..5eced05cb60d254d6f0bdf1adbdf162c933000a8 100644
--- a/Source/modules/quota/StorageErrorCallback.h
+++ b/Source/modules/quota/StorageErrorCallback.h
@@ -45,7 +45,7 @@ typedef int ExceptionCode;
class StorageErrorCallback {
public:
virtual ~StorageErrorCallback() { }
- virtual bool handleEvent(DOMError*) = 0;
+ virtual void handleEvent(DOMError*) = 0;
class CallbackTask : public ExecutionContextTask {
public:

Powered by Google App Engine
This is Rietveld 408576698