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

Unified Diff: Source/core/plugins/DOMPluginArray.cpp

Issue 552733003: Oilpan: make DOMWindowProperty a GC mixin. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pacify GC plugin wrt LocalDOMWindow::trace() 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/DOMPluginArray.cpp
diff --git a/Source/core/plugins/DOMPluginArray.cpp b/Source/core/plugins/DOMPluginArray.cpp
index c129e21ffd6e3b983d060cc0110e2ec94a2c3dc5..5358b94f5d7fc0f9f295c97ad1c71e552e917774 100644
--- a/Source/core/plugins/DOMPluginArray.cpp
+++ b/Source/core/plugins/DOMPluginArray.cpp
@@ -33,8 +33,9 @@ DOMPluginArray::DOMPluginArray(LocalFrame* frame)
{
}
-DOMPluginArray::~DOMPluginArray()
+void DOMPluginArray::trace(Visitor* visitor)
{
+ DOMWindowProperty::trace(visitor);
}
unsigned DOMPluginArray::length() const

Powered by Google App Engine
This is Rietveld 408576698