summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/IDBDatabaseRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/IDBDatabaseRequest.h')
-rw-r--r--WebCore/storage/IDBDatabaseRequest.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/WebCore/storage/IDBDatabaseRequest.h b/WebCore/storage/IDBDatabaseRequest.h
index c027b6a..199eb79 100644
--- a/WebCore/storage/IDBDatabaseRequest.h
+++ b/WebCore/storage/IDBDatabaseRequest.h
@@ -33,6 +33,7 @@
#include <wtf/PassRefPtr.h>
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
+#include <wtf/UnusedParam.h>
#if ENABLE(INDEXED_DATABASE)
@@ -47,7 +48,12 @@ public:
~IDBDatabaseRequest();
// FIXME: Write.
- void createObjectStore(const String& name, const String& keyPath, bool autoIncrement) { }
+ void createObjectStore(const String& name, const String& keyPath, bool autoIncrement)
+ {
+ UNUSED_PARAM(name);
+ UNUSED_PARAM(keyPath);
+ UNUSED_PARAM(autoIncrement);
+ }
private:
IDBDatabaseRequest(PassRefPtr<IDBDatabase>);