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

Unified Diff: Source/core/plugins/DOMPlugin.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/plugins/DOMPlugin.cpp
diff --git a/Source/core/plugins/DOMPlugin.cpp b/Source/core/plugins/DOMPlugin.cpp
index 74c27e9e74b2f11e94f1254d0b9b35db2d495c5a..ebaff997579d9e75c6e61779e33c61126ccc059a 100644
--- a/Source/core/plugins/DOMPlugin.cpp
+++ b/Source/core/plugins/DOMPlugin.cpp
@@ -35,6 +35,11 @@ DOMPlugin::~DOMPlugin()
{
}
+void DOMPlugin::trace(Visitor* visitor)
+{
+ FrameDestructionObserver::trace(visitor);
+}
+
String DOMPlugin::name() const
{
return pluginInfo().name;

Powered by Google App Engine
This is Rietveld 408576698