summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp')
-rw-r--r--src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp b/src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp
index ba316583a..9eb59e33c 100644
--- a/src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp
+++ b/src/3rdparty/webkit/WebCore/storage/StorageAreaImpl.cpp
@@ -43,11 +43,6 @@
namespace WebCore {
-PassRefPtr<StorageArea> StorageAreaImpl::create(StorageType storageType, SecurityOrigin* origin, PassRefPtr<StorageSyncManager> syncManager)
-{
- return adoptRef(new StorageAreaImpl(storageType, origin, syncManager));
-}
-
StorageAreaImpl::~StorageAreaImpl()
{
}
@@ -72,7 +67,7 @@ StorageAreaImpl::StorageAreaImpl(StorageType storageType, SecurityOrigin* origin
}
}
-PassRefPtr<StorageArea> StorageAreaImpl::copy(SecurityOrigin* origin)
+PassRefPtr<StorageAreaImpl> StorageAreaImpl::copy(SecurityOrigin* origin)
{
ASSERT(!m_isShutdown);
return adoptRef(new StorageAreaImpl(origin, this));