summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/storage/IDBKey.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/storage/IDBKey.h')
-rw-r--r--Source/WebCore/storage/IDBKey.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/storage/IDBKey.h b/Source/WebCore/storage/IDBKey.h
index 5816ce3..8ee9b8e 100644
--- a/Source/WebCore/storage/IDBKey.h
+++ b/Source/WebCore/storage/IDBKey.h
@@ -34,7 +34,7 @@
namespace WebCore {
-class IDBKey : public ThreadSafeShared<IDBKey> {
+class IDBKey : public ThreadSafeRefCounted<IDBKey> {
public:
static PassRefPtr<IDBKey> createNull()
{
@@ -100,8 +100,8 @@ public:
bool isLessThan(const IDBKey* other) const;
bool isEqual(const IDBKey* other) const;
- using ThreadSafeShared<IDBKey>::ref;
- using ThreadSafeShared<IDBKey>::deref;
+ using ThreadSafeRefCounted<IDBKey>::ref;
+ using ThreadSafeRefCounted<IDBKey>::deref;
private:
IDBKey();