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

Unified Diff: Source/web/WebRemoteFrameImpl.cpp

Issue 835363003: Oilpan: add missing leftmost trace()s for GC mixins. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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/web/WebRemoteFrameImpl.cpp
diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp
index 49ce2431793d0f8c85e78c01a857d425bf28daec..ef6e86587d926935d797069fbcc49b70c9d7a5c6 100644
--- a/Source/web/WebRemoteFrameImpl.cpp
+++ b/Source/web/WebRemoteFrameImpl.cpp
@@ -91,6 +91,11 @@ void PlaceholderFrameOwner::dispatchLoad()
{
}
+void PlaceholderFrameOwner::trace(Visitor* visitor)
+{
+ FrameOwner::trace(visitor);
+}
+
WebRemoteFrame* WebRemoteFrame::create(WebRemoteFrameClient* client)
{
WebRemoteFrameImpl* frame = new WebRemoteFrameImpl(client);

Powered by Google App Engine
This is Rietveld 408576698