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

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

Issue 822863003: LifecycleObserver::contextDestroyed should be explicitly dispatched promptly when a context is dest… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
« no previous file with comments | « Source/core/dom/ExecutionContext.h ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalDOMWindow.cpp
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp
index 0eb295eb957c3f684cf3e37a0385ced090dc1e5f..eea3020b6026dff7989f703fd2ba5e78692d3418 100644
--- a/Source/core/frame/LocalDOMWindow.cpp
+++ b/Source/core/frame/LocalDOMWindow.cpp
@@ -580,6 +580,7 @@ void LocalDOMWindow::willDetachFrameHost()
{
frame()->host()->eventHandlerRegistry().didRemoveAllEventHandlers(*this);
frame()->host()->consoleMessageStorage().frameWindowDiscarded(this);
+ LifecycleContext<LocalDOMWindow>::contextDestroyed();
}
void LocalDOMWindow::willDestroyDocumentInFrame()
@@ -628,6 +629,8 @@ void LocalDOMWindow::reset()
#if ENABLE(ASSERT)
m_hasBeenReset = true;
#endif
+
+ LifecycleContext<LocalDOMWindow>::contextDestroyed();
}
bool LocalDOMWindow::isCurrentlyDisplayedInFrame() const
« no previous file with comments | « Source/core/dom/ExecutionContext.h ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698