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

Unified Diff: Source/core/storage/Storage.cpp

Issue 552733003: Oilpan: make DOMWindowProperty a GC mixin. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pacify GC plugin wrt LocalDOMWindow::trace() Created 6 years, 3 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
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);
}
}

Powered by Google App Engine
This is Rietveld 408576698