summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/DatabaseCallback.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/DatabaseCallback.h')
-rw-r--r--WebCore/storage/DatabaseCallback.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/WebCore/storage/DatabaseCallback.h b/WebCore/storage/DatabaseCallback.h
index 9ece2a3..8ad56ed 100644
--- a/WebCore/storage/DatabaseCallback.h
+++ b/WebCore/storage/DatabaseCallback.h
@@ -39,13 +39,12 @@ namespace WebCore {
class Database;
class DatabaseSync;
-class ScriptExecutionContext;
class DatabaseCallback : public ThreadSafeShared<DatabaseCallback> {
public:
virtual ~DatabaseCallback() { }
- virtual bool handleEvent(ScriptExecutionContext*, Database*) = 0;
- virtual bool handleEvent(ScriptExecutionContext*, DatabaseSync*) = 0;
+ virtual bool handleEvent(Database*) = 0;
+ virtual bool handleEvent(DatabaseSync*) = 0;
};
}