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

Unified Diff: Source/core/frame/LocalDOMWindow.cpp

Issue 1148383012: Oilpan: prefer eager finalization over prefinalizers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/frame/LocalDOMWindow.cpp
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp
index 4f462b7a55a3746ca31e56cc301a64d3f3114a29..70a3a7a424fea2bb9eee9ec3563dbc0b17a5b554 100644
--- a/Source/core/frame/LocalDOMWindow.cpp
+++ b/Source/core/frame/LocalDOMWindow.cpp
@@ -270,9 +270,6 @@ LocalDOMWindow::LocalDOMWindow(LocalFrame& frame)
, m_hasBeenReset(false)
#endif
{
-#if ENABLE(OILPAN)
- ThreadState::current()->registerPreFinalizer(*this);
-#endif
}
void LocalDOMWindow::clearDocument()
@@ -425,24 +422,14 @@ LocalDOMWindow::~LocalDOMWindow()
ASSERT(m_document->isStopped());
clearDocument();
#endif
-}
-
-void LocalDOMWindow::dispose()
-{
// Oilpan: should the LocalDOMWindow be GCed along with its LocalFrame without the
haraken 2015/06/04 01:02:31 I'm not sure if it makes any difference or not, bu
sof 2015/06/04 07:54:39 Yes, we really don't need this non-Oilpan; moved i
// frame having first notified its observers of imminent destruction, the
// LocalDOMWindow will not have had an opportunity to remove event listeners.
- // Do that here by way of a prefinalizing action.
//
// (Non-Oilpan, LocalDOMWindow::reset() will always be invoked, the last opportunity
// being via ~LocalFrame's setDOMWindow() call.)
if (!frame())
return;
-
- // (Prefinalizing actions run to completion before the Oilpan GC start to lazily sweep,
- // so keeping them short is worthwhile. Something that's worth keeping in mind when
- // working out where to best place some actions that have to be performed very late
- // on in LocalDOMWindow's lifetime.)
removeAllEventListeners();
}

Powered by Google App Engine
This is Rietveld 408576698