diff options
Diffstat (limited to 'WebCore/bindings/js/JSCustomSQLStatementCallback.h')
-rw-r--r-- | WebCore/bindings/js/JSCustomSQLStatementCallback.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/WebCore/bindings/js/JSCustomSQLStatementCallback.h b/WebCore/bindings/js/JSCustomSQLStatementCallback.h index 259aecf..cb7b34d 100644 --- a/WebCore/bindings/js/JSCustomSQLStatementCallback.h +++ b/WebCore/bindings/js/JSCustomSQLStatementCallback.h @@ -45,15 +45,16 @@ public: { return adoptRef(new JSCustomSQLStatementCallback(callback, globalObject)); } - + virtual ~JSCustomSQLStatementCallback(); - virtual void handleEvent(SQLTransaction*, SQLResultSet*, bool& raisedException); + virtual void handleEvent(ScriptExecutionContext*, SQLTransaction*, SQLResultSet*, bool& raisedException); private: JSCustomSQLStatementCallback(JSC::JSObject* callback, JSDOMGlobalObject*); JSCallbackData* m_data; + RefPtr<DOMWrapperWorld> m_isolatedWorld; }; } |