Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Unified Diff: storage/StorageNamespaceImpl.cpp

Issue 155477: Dom Storage (webkit side) (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« storage/StorageAreaImpl.cpp ('K') | « storage/StorageAreaImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« storage/StorageAreaImpl.cpp ('K') | « storage/StorageAreaImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698