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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp

Issue 1421113006: Detach the globals of all frames, not just the main frame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl try Created 5 years, 2 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: third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp b/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
index 970faaf3c45c69d1d3558fe5496c82eb9cec4968..78b3196f087582dc738ebd36679f2e64efbe90d8 100644
--- a/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/WindowProxyManager.cpp
@@ -47,18 +47,11 @@ WindowProxy* WindowProxyManager::windowProxy(DOMWrapperWorld& world)
return windowProxy;
}
-void WindowProxyManager::clearForClose()
+void WindowProxyManager::clearWindowProxy()
{
- m_windowProxy->clearForClose();
+ m_windowProxy->clearWindowProxy();
for (auto& entry : m_isolatedWorlds)
- entry.value->clearForClose();
-}
-
-void WindowProxyManager::clearForNavigation()
-{
- m_windowProxy->clearForNavigation();
- for (auto& entry : m_isolatedWorlds)
- entry.value->clearForNavigation();
+ entry.value->clearWindowProxy();
}
WindowProxy* WindowProxyManager::existingWindowProxy(DOMWrapperWorld& world)

Powered by Google App Engine
This is Rietveld 408576698