Index: Source/core/storage/Storage.cpp |
diff --git a/Source/core/storage/Storage.cpp b/Source/core/storage/Storage.cpp |
index 22820e642c14e470ce738549bee20a7bfa9a7f4c..108f71696c585c3af4d6fddf1ea9fa4f99325cf5 100644 |
--- a/Source/core/storage/Storage.cpp |
+++ b/Source/core/storage/Storage.cpp |
@@ -46,9 +46,7 @@ Storage::Storage(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageA |
ASSERT(m_storageArea); |
} |
-Storage::~Storage() |
-{ |
-} |
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Storage); |
String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState) |
{ |
@@ -127,6 +125,7 @@ bool Storage::namedPropertyQuery(const AtomicString& name, ExceptionState& excep |
void Storage::trace(Visitor* visitor) |
{ |
visitor->trace(m_storageArea); |
+ DOMWindowProperty::trace(visitor); |
} |
} |