summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/SQLStatementCallback.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/SQLStatementCallback.h')
-rw-r--r--WebCore/storage/SQLStatementCallback.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/storage/SQLStatementCallback.h b/WebCore/storage/SQLStatementCallback.h
index 31f5c0c..f86e29f 100644
--- a/WebCore/storage/SQLStatementCallback.h
+++ b/WebCore/storage/SQLStatementCallback.h
@@ -30,7 +30,7 @@
#if ENABLE(DATABASE)
-#include <wtf/Threading.h>
+#include <wtf/ThreadSafeShared.h>
namespace WebCore {
@@ -40,7 +40,7 @@ class SQLResultSet;
class SQLStatementCallback : public ThreadSafeShared<SQLStatementCallback> {
public:
virtual ~SQLStatementCallback() { }
- virtual void handleEvent(SQLTransaction*, SQLResultSet*, bool& raisedException) = 0;
+ virtual bool handleEvent(SQLTransaction*, SQLResultSet*) = 0;
};
}