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

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

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comments + fix fast/events/message-port-gc-closed.html 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/frame/DOMWindowProperty.cpp
diff --git a/Source/core/frame/DOMWindowProperty.cpp b/Source/core/frame/DOMWindowProperty.cpp
index d1c4226a29e98e018c40ef753181987fe7cdee98..4e568d25dfcdcf63511d3e5765643ef87605541b 100644
--- a/Source/core/frame/DOMWindowProperty.cpp
+++ b/Source/core/frame/DOMWindowProperty.cpp
@@ -76,7 +76,8 @@ void DOMWindowProperty::willDetachGlobalObjectFromFrame()
void DOMWindowProperty::trace(Visitor* visitor)
{
+ visitor->trace(m_frame);
visitor->trace(m_associatedDOMWindow);
}
-}
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698