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