summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/storage/IDBAbortEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/storage/IDBAbortEvent.h')
-rw-r--r--Source/WebCore/storage/IDBAbortEvent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/storage/IDBAbortEvent.h b/Source/WebCore/storage/IDBAbortEvent.h
index bdc2202..fc27989 100644
--- a/Source/WebCore/storage/IDBAbortEvent.h
+++ b/Source/WebCore/storage/IDBAbortEvent.h
@@ -40,14 +40,14 @@ namespace WebCore {
class IDBAbortEvent : public IDBEvent {
public:
- static PassRefPtr<IDBAbortEvent> create();
+ static PassRefPtr<IDBAbortEvent> create(PassRefPtr<IDBAny> source);
// FIXME: Need to allow creation of these events from JS.
virtual ~IDBAbortEvent();
virtual bool isIDBAbortEvent() const { return true; }
private:
- IDBAbortEvent();
+ IDBAbortEvent(PassRefPtr<IDBAny> source);
};
} // namespace WebCore