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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/storage/SQLTransactionCallback.h b/WebCore/storage/SQLTransactionCallback.h
index de3e85dc..73123ee 100644
--- a/WebCore/storage/SQLTransactionCallback.h
+++ b/WebCore/storage/SQLTransactionCallback.h
@@ -31,17 +31,17 @@
#if ENABLE(DATABASE)
-#include <wtf/Threading.h>
+#include <wtf/ThreadSafeShared.h>
namespace WebCore {
+class ScriptExecutionContext;
class SQLTransaction;
-class SQLError;
class SQLTransactionCallback : public ThreadSafeShared<SQLTransactionCallback> {
public:
virtual ~SQLTransactionCallback() { }
- virtual void handleEvent(SQLTransaction*, bool& raisedException) = 0;
+ virtual bool handleEvent(ScriptExecutionContext*, SQLTransaction*) = 0;
};
}