| Index: storage/StorageNamespaceImpl.cpp
|
| ===================================================================
|
| --- storage/StorageNamespaceImpl.cpp (revision 45738)
|
| +++ storage/StorageNamespaceImpl.cpp (working copy)
|
| @@ -28,6 +28,7 @@
|
|
|
| #if ENABLE(DOM_STORAGE)
|
|
|
| +#include "StorageAreaImpl.h"
|
| #include <wtf/StdLibExtras.h>
|
|
|
| namespace WebCore {
|
| @@ -105,7 +106,7 @@
|
| if (storageArea = m_storageAreaMap.get(origin))
|
| return storageArea.release();
|
|
|
| - storageArea = StorageArea::create(m_storageType, origin, m_syncManager);
|
| + storageArea = StorageAreaImpl::create(m_storageType, origin, m_syncManager);
|
| m_storageAreaMap.set(origin, storageArea);
|
| return storageArea.release();
|
| }
|
|
|