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

Unified Diff: Source/core/loader/FrameFetchContext.cpp

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors 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/loader/FrameFetchContext.cpp
diff --git a/Source/core/loader/FrameFetchContext.cpp b/Source/core/loader/FrameFetchContext.cpp
index 5604f912d567f54875724432e5262c8748c5b749..add5b224aa89219ab7086559af9c6df108b043ec 100644
--- a/Source/core/loader/FrameFetchContext.cpp
+++ b/Source/core/loader/FrameFetchContext.cpp
@@ -207,4 +207,10 @@ void FrameFetchContext::sendRemainingDelegateMessages(DocumentLoader* loader, un
dispatchDidFinishLoading(ensureLoader(loader), identifier, 0, 0);
}
+void FrameFetchContext::trace(Visitor* visitor)
+{
+ visitor->trace(m_frame);
+ FetchContext::trace(visitor);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698