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