summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/storage/SQLError.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/storage/SQLError.h')
-rw-r--r--Source/WebCore/storage/SQLError.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/storage/SQLError.h b/Source/WebCore/storage/SQLError.h
index 496145a..eb9005b 100644
--- a/Source/WebCore/storage/SQLError.h
+++ b/Source/WebCore/storage/SQLError.h
@@ -32,11 +32,11 @@
#if ENABLE(DATABASE)
#include "PlatformString.h"
-#include <wtf/ThreadSafeShared.h>
+#include <wtf/ThreadSafeRefCounted.h>
namespace WebCore {
-class SQLError : public ThreadSafeShared<SQLError> {
+class SQLError : public ThreadSafeRefCounted<SQLError> {
public:
static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); }