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

Unified Diff: Source/modules/indexeddb/DOMWindowIndexedDatabase.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/modules/indexeddb/DOMWindowIndexedDatabase.cpp
diff --git a/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp b/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp
index cd01d93046f656f0f04b759defd7942a4e882a2b..e18e5f848852c17911dd7a492d8c0ba3a80a64b4 100644
--- a/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp
+++ b/Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp
@@ -39,14 +39,13 @@ DOMWindowIndexedDatabase::DOMWindowIndexedDatabase(LocalDOMWindow& window)
{
}
-DOMWindowIndexedDatabase::~DOMWindowIndexedDatabase()
-{
-}
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowIndexedDatabase);
void DOMWindowIndexedDatabase::trace(Visitor* visitor)
{
visitor->trace(m_idbFactory);
WillBeHeapSupplement<LocalDOMWindow>::trace(visitor);
+ DOMWindowProperty::trace(visitor);
}
const char* DOMWindowIndexedDatabase::supplementName()

Powered by Google App Engine
This is Rietveld 408576698